riff/Program.cs

18 lines
439 B
C#

namespace riff;
class Program
{
static void Main(string[] args)
{
List<string> mysteriousCubeChannels = [
"#testbot",
];
var cube = new MysteriousCube(
"localhost",
6667,
"mysterious_cube",
"~nebula https://git.tilde.town/nebula/riff",
mysteriousCubeChannels);
new Thread(new ThreadStart(cube.MainLoop)).Start();
}
}