| 40 | } |
| 41 | |
| 42 | type Driver struct { |
| 43 | isInit bool |
| 44 | accountService account.IAccountService `autowired:""` |
| 45 | userService user.IUserService `autowired:""` |
| 46 | roleService role.IRoleService `autowired:""` |
| 47 | roleMemberService role.IRoleMemberService `autowired:""` |
| 48 | } |
| 49 | |
| 50 | func (d *Driver) Init() { |
| 51 | if d.isInit { |
nothing calls this directly
no outgoing calls
no test coverage detected