17 lines
188 B
Go
17 lines
188 B
Go
package main
|
|
|
|
import "surdeus.su/core/cli/mtool"
|
|
import "os"
|
|
|
|
func main() {
|
|
tool.Run(os.Args[1:])
|
|
}
|
|
|
|
var tool = mtool.T("amocli").Subs(
|
|
getLead,
|
|
|
|
getComs,
|
|
updateComs,
|
|
|
|
getContacts,
|
|
)
|