package unfreeze import ( "github.com/33cn/chain33/plugin/dapp/${CLASSNAME}/commands" "github.com/33cn/chain33/plugin/dapp/${CLASSNAME}/ptypes" "github.com/33cn/chain33/plugin/dapp/${CLASSNAME}/executor" "github.com/33cn/chain33/pluginmgr" ) func init() { pluginmgr.Register(&pluginmgr.PluginBase{ Name: ptyoes.PackageName, ExecName: executor.GetName(), Exec: executor.Init, Cmd: commands.Cmd, RPC: nil, }) }