コード例 #1
0
ファイル: WelcomeDm.cs プロジェクト: Zelda-Universe/Kaepora
        private async Task Demo(DateTime date, Profile stage)
        {
            if (stage is null)
            {
                stage = _welcomeService.GetProfileForDate(date);
            }

            await _welcomeService.WelcomeUser(Context.User as SocketGuildUser, stage);

            await Context.Message.AddReactionAsync(thumbsUpUnicode);
        }