feat: add Wrap and Wrapf in errorx (#2126)

This commit is contained in:
Kevin Wan
2022-07-11 23:04:38 +08:00
committed by GitHub
parent 1c09db6d5d
commit e672b3f8e1
4 changed files with 52 additions and 0 deletions

7
gateway/config.go Normal file
View File

@@ -0,0 +1,7 @@
package gateway
import "github.com/zeromicro/go-zero/rest"
type GatewayConf struct {
rest.RestConf
}

6
gateway/server.go Normal file
View File

@@ -0,0 +1,6 @@
package gateway
type Server struct {
}
func MustNewServer() {}