Skip to content

Commit 0e01bf0

Browse files
authored
Calling client class
1 parent 18b58e3 commit 0e01bf0

File tree

1 file changed

+10
-0
lines changed

1 file changed

+10
-0
lines changed

ClientTest.java

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
import javax.swing.JFrame;
2+
3+
public class ClientTest {
4+
public static void main(String[] args) {
5+
Client jarvis;
6+
jarvis=new Client("127.0.0.1");//localhost since we need to pass ip
7+
jarvis.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
8+
jarvis.startRunning();
9+
}
10+
}

0 commit comments

Comments
 (0)