2019-03-21 16:30:23 -04:00
|
|
|
package commands
|
|
|
|
|
2022-07-31 22:16:40 +02:00
|
|
|
var GlobalCommands *Commands
|
2019-03-21 16:30:23 -04:00
|
|
|
|
2019-06-27 10:33:11 -07:00
|
|
|
func register(cmd Command) {
|
2019-03-21 16:30:23 -04:00
|
|
|
if GlobalCommands == nil {
|
|
|
|
GlobalCommands = NewCommands()
|
|
|
|
}
|
2019-06-27 10:33:11 -07:00
|
|
|
GlobalCommands.Register(cmd)
|
2019-03-21 16:30:23 -04:00
|
|
|
}
|