* In Progress, Not Done Yet + Added Handlers to cover public and admin handlers + Added WebServer + InitHandlers used the new class
10 lines
136 B
Go
10 lines
136 B
Go
package System
|
|
|
|
import (
|
|
"github.com/SommerEngineering/Ocean/WebServer"
|
|
)
|
|
|
|
func StartAndBlockForever() {
|
|
WebServer.Start()
|
|
}
|