mirror of
https://github.com/yunionio/cloudpods.git
synced 2026-05-18 13:08:42 +08:00
15 lines
313 B
Go
15 lines
313 B
Go
package shellutils
|
|
|
|
type CMD struct {
|
|
Options interface{}
|
|
Command string
|
|
Desc string
|
|
Callback interface{}
|
|
}
|
|
|
|
var CommandTable = make([]CMD, 0)
|
|
|
|
func R(options interface{}, command string, desc string, callback interface{}) {
|
|
CommandTable = append(CommandTable, CMD{options, command, desc, callback})
|
|
}
|