diff options
author | Runxi Yu <me@runxiyu.org> | 2024-12-29 08:50:47 +0800 |
---|---|---|
committer | Runxi Yu <me@runxiyu.org> | 2024-12-29 08:50:47 +0800 |
commit | d04d8362945d39add4515db0fab22699f207af54 (patch) | |
tree | 3080f6f9cb484f9e6ebe7b564dfc6fce4a13a57d /config | |
parent | Remove Nix stuff for now (diff) | |
download | legitrx-master.tar.gz legitrx-master.tar.zst legitrx-master.zip |
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"` } |