esoe
2 years ago
1 changed files with 14 additions and 1 deletions
@ -1,5 +1,18 @@ |
|||||||
package ru.molokoin; |
package ru.molokoin; |
||||||
|
|
||||||
public class ExchangeServer { |
public class ExchangeServer { |
||||||
|
public static Thread server = new Thread(new ServerLauncher()); |
||||||
|
|
||||||
|
//Запуск сервера
|
||||||
|
public void enable(ExchangeServer server){ |
||||||
|
//
|
||||||
|
} |
||||||
|
//Остановка сервера
|
||||||
|
public void disable(ExchangeServer server){ |
||||||
|
//
|
||||||
|
} |
||||||
|
public static void main(String[] args) { |
||||||
|
server.start(); |
||||||
|
|
||||||
|
} |
||||||
} |
} |
||||||
|
Loading…
Reference in new issue