github.com/turingchain2020/turingchain@v1.1.21/cmd/tools/gencode/dappcode/init.go (about) 1 // Copyright Turing Corp. 2018 All Rights Reserved. 2 // Use of this source code is governed by a BSD-style 3 // license that can be found in the LICENSE file. 4 5 package dappcode 6 7 import ( 8 _ "github.com/turingchain2020/turingchain/cmd/tools/gencode/dappcode/cmd" //init cmd 9 _ "github.com/turingchain2020/turingchain/cmd/tools/gencode/dappcode/commands" // init command 10 _ "github.com/turingchain2020/turingchain/cmd/tools/gencode/dappcode/executor" // init executor 11 _ "github.com/turingchain2020/turingchain/cmd/tools/gencode/dappcode/proto" // init proto 12 _ "github.com/turingchain2020/turingchain/cmd/tools/gencode/dappcode/rpc" // init rpc 13 _ "github.com/turingchain2020/turingchain/cmd/tools/gencode/dappcode/types" // init types 14 )