コード例 #1
0
ファイル: Program.cs プロジェクト: TheStachelfisch/TomatBot
        /// <summary>
        ///     Main entry-point.
        /// </summary>
        public static void Main()
        {
            // Register command information
            CommandRegistry.LoadCommandEntries();

            // Start up the bot
            BotStartup.StartBotAsync()
            .GetAwaiter()
            .GetResult();
        }