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