diff options
author | Emile <hanemile@protonmail.com> | 2020-01-29 20:12:39 +0100 |
---|---|---|
committer | Emile <hanemile@protonmail.com> | 2020-01-29 20:12:39 +0100 |
commit | dcf1c9da347386841466b98267b084ac16229ee4 (patch) | |
tree | e3476ecba0cdd45e33ded238ed584aa902eb335f | |
parent | 7847a4e3c9ac3a431e101965de26d9f2462d36c7 (diff) |
config parameters
-rw-r--r-- | src/structs.go | 8 |
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 +} |