diff options
author | xengineering <me@xengineering.eu> | 2024-05-01 13:09:39 +0200 |
---|---|---|
committer | xengineering <me@xengineering.eu> | 2024-05-01 13:09:39 +0200 |
commit | f9117c3740a134ce544f5a70bcf5b5da06d976da (patch) | |
tree | e104d33b8be0a533a1646025430312c1c0ccec7c /main.go | |
parent | 409f612eb87418a5bff09d5e83a19ffc6f2306f6 (diff) | |
download | ceres-f9117c3740a134ce544f5a70bcf5b5da06d976da.tar ceres-f9117c3740a134ce544f5a70bcf5b5da06d976da.tar.zst ceres-f9117c3740a134ce544f5a70bcf5b5da06d976da.zip |
Use default config for HTTP address
Diffstat (limited to 'main.go')
-rw-r--r-- | main.go | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -39,7 +39,7 @@ func main() { view.Init() - var srv *http.Server = startServer("127.0.0.1:8080") + var srv *http.Server = startServer(config.HttpAddress) go srv.ListenAndServe() defer stopServer(srv) |