Ian Howell b5de5bf967 Change to "compile-in" plugins
Move away from the builtin 'plugin' package in favor of compile-in
plugins. This will require a plugin author to inject code into the
proper packages before building airshipctl
2019-05-17 09:23:30 -05:00

12 lines
113 B
Go

package main
import (
"os"
"github.com/ian-howell/airshipctl/cmd"
)
func main() {
cmd.Execute(os.Stdout)
}