gitlink_blockchain/main.go

13 lines
325 B
Go
Raw Permalink Normal View History

2023-01-19 22:30:01 +08:00
package main
import (
"github.com/sulenn/trustie-fisco-bcos/modules/os"
"github.com/sulenn/trustie-fisco-bcos/routers/routes"
)
func main() {
m := routes.NewMacaron()
os.SetListeningPort("8000") // 设置监听端口
m.Run() // 如果存在环境变量 port则读取。否则默认监听 4000
}