backend/app/brahma/service/token/main.go

9 lines
143 B
Go
Raw Normal View History

2022-01-14 20:11:39 +08:00
package main
2022-01-19 19:39:04 +08:00
import servesr "git.icechen.cn/monorepo/backend/app/brahma/service/token/internal/server"
2022-01-14 20:11:39 +08:00
func main() {
servesr.RpcServer()
2022-01-19 19:39:04 +08:00
2022-01-14 20:11:39 +08:00
}