This commit is contained in:
YouROK
2021-08-25 22:18:14 +03:00
parent c219e52429
commit 3420fa44ba
11 changed files with 341 additions and 17 deletions

View File

@@ -25,8 +25,9 @@ func Start(port string, roSets bool) {
log.TLogln("Port", port, "already in use! Abort")
os.Exit(1)
} else {
go cleanCache()
web.Start(port)
go cleanCache()
settings.Port = port
web.Start(port)
}
}