コード例 #1
0
ファイル: Profiling.cs プロジェクト: sermetk/Orikivo.Classic
        public async Task GetChangelogResponseAsync()
        {
            Changelog c = Context.Global.GetRecentChangelog();

            if (!c.Exists())
            {
                await ReplyAsync("There are currently no changelogs.");
            }

            await ReplyAsync(embed : c.Generate().Build());
        }