summaryrefslogtreecommitdiff
path: root/main.go
diff options
context:
space:
mode:
authorxengineering <me@xengineering.eu>2024-05-01 13:09:39 +0200
committerxengineering <me@xengineering.eu>2024-05-01 13:09:39 +0200
commitf9117c3740a134ce544f5a70bcf5b5da06d976da (patch)
treee104d33b8be0a533a1646025430312c1c0ccec7c /main.go
parent409f612eb87418a5bff09d5e83a19ffc6f2306f6 (diff)
downloadceres-f9117c3740a134ce544f5a70bcf5b5da06d976da.tar
ceres-f9117c3740a134ce544f5a70bcf5b5da06d976da.tar.zst
ceres-f9117c3740a134ce544f5a70bcf5b5da06d976da.zip
Use default config for HTTP address
Diffstat (limited to 'main.go')
-rw-r--r--main.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/main.go b/main.go
index 4947fc8..0c82a7c 100644
--- a/main.go
+++ b/main.go
@@ -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)