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

13 lines
301 B
Go
Raw Normal View History

2022-08-12 19:08:47 +00:00
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)
}