Add stuff - first commit

This commit is contained in:
ChomeNS
2023-03-18 18:04:06 +07:00
commit d0f5d29092
41 changed files with 7176 additions and 0 deletions

View File

@@ -0,0 +1,11 @@
package me.chayapak1.chomensbot_mabe;
public class Main {
public static void main(String[] args) {
final String host = args[0];
final int port = Integer.parseInt(args[1]);
final String username = args[2];
new Bot(host, port, username);
}
}