10 lines
140 B
Go
10 lines
140 B
Go
|
package console
|
||
|
|
||
|
import (
|
||
|
"github.com/qit-team/snow-core/command"
|
||
|
)
|
||
|
|
||
|
func RegisterCommand(c *command.Command) {
|
||
|
c.AddFunc("test", test)
|
||
|
}
|