17 lines
206 B
Go
17 lines
206 B
Go
package main
|
|
|
|
import (
|
|
"alma/command"
|
|
"os"
|
|
)
|
|
|
|
func main() {
|
|
commands := []command.Command{
|
|
command.LinkCommand{},
|
|
command.InfoCommand{},
|
|
command.InstallCommand{},
|
|
}
|
|
|
|
run(commands, os.Args[1:])
|
|
}
|