github.com/turingchain2020/turingchain@v1.1.21/doc.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  /*
     6  turingchain 是由图灵科技有限公司开发的区块链链框架
     7  
     8  1. 高度可定制
     9  
    10  2. 丰富的插件库
    11  
    12  3. 创新的 合约 调用和组合方式
    13  */
    14  
    15  package turingchain
    16  
    17  //有些包国内需要翻墙才能下载,我们把部分参见的包含在这里
    18  import (
    19  	_ "golang.org/x/crypto/nacl/box" //register box package
    20  	_ "golang.org/x/crypto/nacl/secretbox"
    21  	_ "golang.org/x/crypto/ssh"
    22  )