about summary refs log tree commit diff
path: root/Examples/States/Program.cs
blob: 3c98b23d2c260ecb5dd1a4deeb72d70f37590fdf (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
namespace States
{
    public static class Program
    {
        private static void Main(string[] args)
        {
            var client = new Client("localhost", 6667, "statesbot");
            client.Start();
        }
    }
}