3
0
Fork 0
This repository has been archived on 2024-11-14. You can view files and clone it, but cannot push or open issues or pull requests.
ThemeParkPlus-Socket/handlers/loader.go
2022-08-12 21:08:47 +02:00

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)
}