Ocean/System/StartAndBlockForever.go

19 lines
300 B
Go
Raw Permalink Normal View History

2015-06-21 18:19:16 +00:00
package System
import (
"github.com/SommerEngineering/Ocean/WebServer"
"time"
)
// The main function for the application.
func StartAndBlockForever() {
// Starts the public and private web server with own threads:
WebServer.Start()
// Wait forever:
for {
time.Sleep(1 * time.Second)
}
}