fix: Small semantic fix

This commit is contained in:
mv-kan 2022-10-04 15:40:03 +02:00
parent c4b7ef9160
commit a3e74c609b

View file

@ -93,5 +93,5 @@ func main() {
lis := fmt.Sprintf("127.0.0.1:%s", port)
logrus.Infof("listening on http://%s/", lis)
logrus.Fatal(http.ListenAndServe("127.0.0.1:"+port, nil))
logrus.Fatal(http.ListenAndServe(lis, nil))
}