// Copyright Fuzamei Corp. 2018 All Rights Reserved. // Use of this source code is governed by a BSD-style // license that can be found in the LICENSE file. package coins import ( "github.com/33cn/chain33/pluginmgr" _ "github.com/33cn/chain33/system/dapp/coins/autotest" "github.com/33cn/chain33/system/dapp/coins/executor" "github.com/33cn/chain33/system/dapp/coins/types" ) func init() { pluginmgr.Register(&pluginmgr.PluginBase{ Name: types.CoinsX, ExecName: executor.GetName(), Exec: executor.Init, Cmd: nil, RPC: nil, }) }