
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
12 lines
113 B
Go
12 lines
113 B
Go
package main
|
|
|
|
import (
|
|
"os"
|
|
|
|
"github.com/ian-howell/airshipctl/cmd"
|
|
)
|
|
|
|
func main() {
|
|
cmd.Execute(os.Stdout)
|
|
}
|