aboutsummaryrefslogtreecommitdiff
path: root/net/client.go
diff options
context:
space:
mode:
Diffstat (limited to 'net/client.go')
-rw-r--r--net/client.go12
1 files changed, 12 insertions, 0 deletions
diff --git a/net/client.go b/net/client.go
new file mode 100644
index 0000000..dae0fa1
--- /dev/null
+++ b/net/client.go
@@ -0,0 +1,12 @@
+// Copyright (c) 2016 Florian Fischer. All rights reserved.
+// Use of this source code is governed by a MIT license found in the LICENSE file.
+
+package net
+
+type Client struct {
+ Port string
+}
+
+func (ui *Client) Run() {
+ println("Not Implemented")
+}