about summary refs log tree commit diff
diff options
context:
space:
mode:
authorEmile <hanemile@protonmail.com>2020-01-29 20:12:39 +0100
committerEmile <hanemile@protonmail.com>2020-01-29 20:12:39 +0100
commitdcf1c9da347386841466b98267b084ac16229ee4 (patch)
treee3476ecba0cdd45e33ded238ed584aa902eb335f
parent7847a4e3c9ac3a431e101965de26d9f2462d36c7 (diff)
config parameters
-rw-r--r--src/structs.go8
1 files changed, 5 insertions, 3 deletions
diff --git a/src/structs.go b/src/structs.go
index 15d1d7d..726096d 100644
--- a/src/structs.go
+++ b/src/structs.go
@@ -25,6 +25,8 @@ type location struct {
 }
 
 type config struct {
-	sshPort int
-	httpPort int
-}
\ No newline at end of file
+	sshPort   int
+	httpPort  int
+	bindIP    string
+	stateFile string
+}