summaryrefslogtreecommitdiff
path: root/DiscoBot/Program.cs
blob: aa7b7ab75c06fde875b604ba1310d8415ffc70dd (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;

namespace DiscoBot
{
    class Program
    {
        static void Main(string[] args)
        {
            //new Form1();
            new System.Threading.Thread(Launch).Start();
            //MyBot Bot2 = new MyBot("MjU1NDM1MDUyMTg2MzM3Mjkw.Cydmeg.AV2aEAwrM9UHqOUnmmUXaC5TBm4");
        }
        public static void Launch()
        {
            new MyBot();
        }
    }
}