12 lines
301 B
Go
Executable file
12 lines
301 B
Go
Executable file
package handlers
|
|
|
|
import (
|
|
"github.com/Mindgamesnl/socketio"
|
|
"github.com/ParadoxPixel/ThemePark-Websocket/handlers/data"
|
|
"github.com/ParadoxPixel/ThemePark-Websocket/handlers/user"
|
|
)
|
|
|
|
func Load(namespace socketio.Namespace, debug bool) {
|
|
user.Load(namespace, debug)
|
|
data.Load(namespace, debug)
|
|
}
|