Webserver runtime takes port as variable

This commit is contained in:
2021-01-28 08:02:13 -05:00
parent ac6f46345a
commit f17f3d160c
2 changed files with 3 additions and 3 deletions

View File

@@ -43,7 +43,7 @@ func main() {
switch appRuntime {
case "webserver":
runtime.StartWebserver()
runtime.StartWebserver(8081)
default:
log.Fatalln("Runtime is currently not implemented!")
os.Exit(1)