package ${EXECNAME} import ( "github.com/33cn/chain33/plugin/dapp/${EXECNAME}/commands" "github.com/33cn/chain33/plugin/dapp/${EXECNAME}/executor" pty "github.com/33cn/chain33/plugin/dapp/${EXECNAME}/types" "github.com/33cn/chain33/pluginmgr" ) func init() { pluginmgr.Register(&pluginmgr.PluginBase{ Name: pty.${EXECNAME}X, ExecName: executor.GetName(), Exec: executor.Init, Cmd: commands.Cmd, RPC: rpc.Init, }) }