mirror of
https://github.com/barelyprofessional/KfChatDotNet.git
synced 2026-04-30 03:22:04 -04:00
15 lines
262 B
C#
15 lines
262 B
C#
using System.Net;
|
|
using System.Text;
|
|
using NLog;
|
|
|
|
namespace KfChatDotNetKickBot
|
|
{
|
|
public class Program
|
|
{
|
|
static void Main(string[] args)
|
|
{
|
|
Console.OutputEncoding = Encoding.UTF8;
|
|
new KickBot();
|
|
}
|
|
}
|
|
} |