コード例 #1
0
ファイル: Program.cs プロジェクト: Hunt2176/TelegramBotKit
        public static void Main(string[] args)
        {
            var token = File.ReadAllText(Directory.GetCurrentDirectory() + "token.txt");

            TelegramBot bot = new TelegramBot(token);

            bot.Start();
            bot.Join();
        }
コード例 #2
0
 public ClientManager(TelegramBot owner)
 {
     _owner = owner;
 }