mirror of
https://github.com/funkemunky/AntiVPN.git
synced 2026-06-02 01:52:16 +00:00
Starting project
This commit is contained in:
@@ -0,0 +1,18 @@
|
||||
package dev.brighten.antivpn;
|
||||
|
||||
public class AntiVPN {
|
||||
|
||||
private static AntiVPN INSTANCE;
|
||||
|
||||
public static void start() {
|
||||
INSTANCE = new AntiVPN();
|
||||
}
|
||||
|
||||
public static AntiVPN getInstance() {
|
||||
assert INSTANCE != null: "AntiVPN has not been initialized!";
|
||||
|
||||
return INSTANCE;
|
||||
}
|
||||
|
||||
public void getAPI()
|
||||
}
|
||||
Reference in New Issue
Block a user