github.com/turingchain2020/turingchain@v1.1.21/cmd/turingchain/main.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  // +build go1.8
     6  
     7  // Package main turingchain程序入口
     8  package main
     9  
    10  import (
    11  	_ "github.com/turingchain2020/turingchain/system"
    12  	"github.com/turingchain2020/turingchain/util/cli"
    13  )
    14  
    15  func main() {
    16  	cli.RunTuringchain("", "")
    17  }