| 123456789101112131415161718 |
- package binding
- import (
- "git.sxidc.com/go-framework/baize/framwork/api"
- "git.sxidc.com/go-framework/baize/framwork/infrastructure"
- )
- type Binder struct {
- router api.Router
- i *infrastructure.Infrastructure
- }
- func NewBinder(router api.Router, i *infrastructure.Infrastructure) *Binder {
- return &Binder{
- router: router,
- i: i,
- }
- }
|