Change default port to 3000

This commit is contained in:
sirkrypt0
2021-04-28 11:21:59 +02:00
parent 8504e1a749
commit 8b6fef3c34

View File

@ -12,7 +12,7 @@ import (
func main() {
server := &http.Server{
Addr: "0.0.0.0:4000",
Addr: "0.0.0.0:3000",
WriteTimeout: time.Second * 15,
ReadTimeout: time.Second * 15,
IdleTimeout: time.Second * 60,