You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
package main
|
|
|
|
import (
|
|
"fmt"
|
|
|
|
"github.com/zeromicro/go-zero/tools/goctl/plugin"
|
|
)
|
|
|
|
func main() {
|
|
plugin, err := plugin.NewPlugin()
|
|
if err != nil {
|
|
panic(err)
|
|
}
|
|
|
|
if plugin.Api != nil {
|
|
fmt.Printf("api: %+v \n", plugin.Api)
|
|
}
|
|
fmt.Println("Enjoy anything you want.")
|
|
}
|