Main.java 410 B

1234567891011121314151617
  1. package com.company;
  2. import java.io.IOException;
  3. public class Main {
  4. public static void main(String[] args) throws Throwable {
  5. // Bank.insert(new User("Vasya", "96300100120", "qwerty", "1234"), 0);
  6. try {
  7. Server server = new Server();
  8. server.Run();
  9. } catch (IOException exception) {
  10. System.out.println(exception.getMessage());
  11. }
  12. }
  13. }