13 lines
301 B
Go
13 lines
301 B
Go
|
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)
|
||
|
}
|