Ocean/System/Start.go

14 lines
188 B
Go
Raw Normal View History

package System
import (
"github.com/SommerEngineering/Ocean/WebServer"
"time"
)
func StartAndBlockForever() {
WebServer.Start()
for {
time.Sleep(1 * time.Second)
}
}