博學谷Go語言與區(qū)塊鏈在線就業(yè)
創(chuàng)建項目
在$GOPATH的src下創(chuàng)建項目blockChain
在blockChain下創(chuàng)建文件.env和main.go
在.env文件中寫入PORT=8088
需要引入的包
import (
? "crypto/sha256"
? "encoding/hex"
? "time"
? "os"
? "log"
? "net/http"
? "github.com/gorilla/mux"
? "encoding/json"
? "io"
? "github.com/davecgh/go-spew/spew"
? "sync"
? "strconv"
? "strings"
? "fmt"
? "github.com/joho/godotenv"
? "net"
? "bufio")
標簽: