go-template/app/service/example_service/example_service.go

10 lines
146 B
Go
Raw Normal View History

2021-12-24 18:50:43 +08:00
package main
2021-12-29 23:27:19 +08:00
import (
2021-12-31 00:43:53 +08:00
"git.icechen.cn/${REPO_NAME}/${REPO_NAME}/app/service/example_service/internal/user"
2021-12-29 23:27:19 +08:00
)
2021-12-24 18:50:43 +08:00
2021-12-29 20:32:45 +08:00
func main() {
user.RpcServer()
2021-12-24 18:50:43 +08:00
}