Fix the bridge and share entity.

This commit is contained in:
zicla
2019-04-29 02:14:12 +08:00
parent 120d9a55c8
commit ca721c78e6
12 changed files with 641 additions and 9 deletions

View File

@ -130,6 +130,11 @@ func (this *TankContext) registerBeans() {
this.registerBean(new(rest.AlienController))
this.registerBean(new(rest.AlienService))
//bridge
this.registerBean(new(rest.BridgeController))
this.registerBean(new(rest.BridgeDao))
this.registerBean(new(rest.BridgeService))
//dashboard
this.registerBean(new(rest.DashboardController))
this.registerBean(new(rest.DashboardDao))
@ -165,6 +170,11 @@ func (this *TankContext) registerBeans() {
this.registerBean(new(rest.SessionDao))
this.registerBean(new(rest.SessionService))
//share
this.registerBean(new(rest.ShareController))
this.registerBean(new(rest.ShareDao))
this.registerBean(new(rest.ShareService))
//uploadToken
this.registerBean(new(rest.UploadTokenDao))