diff options
Diffstat (limited to '')
-rw-r--r-- | config.yaml | 3 | ||||
-rw-r--r-- | config/config.go | 3 |
2 files changed, 2 insertions, 4 deletions
diff --git a/config.yaml b/config.yaml index a0b7a66..be722ca 100644 --- a/config.yaml +++ b/config.yaml @@ -16,5 +16,4 @@ meta: description: Runxi Yu's git server thing server: name: git.runxiyu.org - host: 127.0.0.1 - port: 5555 + addr: 127.0.0.1:5555 diff --git a/config/config.go b/config/config.go index 7c38341..e8fdcbb 100644 --- a/config/config.go +++ b/config/config.go @@ -25,8 +25,7 @@ type Config struct { } `yaml:"meta"` Server struct { Name string `yaml:"name,omitempty"` - Host string `yaml:"host"` - Port int `yaml:"port"` + Addr string `yaml:"addr"` } `yaml:"server"` } |