96bcb5da8f
* Is not done yet + Add configuration for the admin web server + Refactor the ICCC messages to an own namespace + Added a main to Ocean. It can be used by just ICCC! + Added proper logging for the servers' start up
15 lines
354 B
Go
15 lines
354 B
Go
package main
|
|
|
|
import (
|
|
"github.com/SommerEngineering/Ocean/Log"
|
|
LM "github.com/SommerEngineering/Ocean/Log/Meta"
|
|
"github.com/SommerEngineering/Ocean/System"
|
|
)
|
|
|
|
func main() {
|
|
|
|
Log.LogShort(senderName, LM.CategoryAPP, LM.LevelINFO, LM.MessageNameSTARTUP, `VRStudiePT is starting.`)
|
|
System.InitHandlers()
|
|
System.StartAndBlockForever()
|
|
}
|