root.go 204 B

123456789101112
  1. package root
  2. import (
  3. "git.sxidc.com/go-framework/baize/framework/gateway"
  4. )
  5. type Router struct{}
  6. func (router *Router) Init(gw *gateway.Gateway) {
  7. configurationGateway(gw)
  8. sqlExecutorGateway(gw)
  9. }