This commit is contained in:
2022-12-10 15:49:16 -03:00
commit f501a71033
10 changed files with 492 additions and 0 deletions
+15
View File
@@ -0,0 +1,15 @@
namespace KasinoBot
{
class Program
{
static void Main(string[] args)
{
Client client = new Client();
client.Initialize().Wait();
}
}
}