Skip to content

Commit 24c24fc

Browse files
authored
Done with calling main class and sending messages
0 parents  commit 24c24fc

File tree

1 file changed

+9
-0
lines changed

1 file changed

+9
-0
lines changed

CallServer.java

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
import javax.swing.JFrame;
2+
3+
public class CallServer {
4+
public static void main(String[] args) {
5+
Server jinit = new Server();
6+
jinit.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
7+
jinit.startRunning();
8+
}
9+
}

0 commit comments

Comments
 (0)