about summary refs log tree commit diff
diff options
context:
space:
mode:
authorEmile <hanemile@protonmail.com>2020-01-27 20:27:55 +0100
committerEmile <hanemile@protonmail.com>2020-01-27 20:27:55 +0100
commita0962a4248ef055651cd358d56f6173deb20c289 (patch)
tree8ea4c7742a646560756b08441b1cee33f9993170
parentc5651a2da6dd9f85f37f74fcc756285bf8998eaa (diff)
config struct
-rw-r--r--src/structs.go5
1 files changed, 5 insertions, 0 deletions
diff --git a/src/structs.go b/src/structs.go
index 8b53fe9..15d1d7d 100644
--- a/src/structs.go
+++ b/src/structs.go
@@ -23,3 +23,8 @@ type location struct {
 	longitude float64 `json:"longitude"`
 	name      string  `json:"name"`
 }
+
+type config struct {
+	sshPort int
+	httpPort int
+}
\ No newline at end of file