()
| 41 | interface UserService extends TcService, TcDbService<UserDocument, UserModel> {} |
| 42 | class UserService extends TcService { |
| 43 | get serviceName() { |
| 44 | return 'user'; |
| 45 | } |
| 46 | |
| 47 | onInit() { |
| 48 | this.registerLocalDb(require('../../../models/user/user').default); |
nothing calls this directly
no outgoing calls
no test coverage detected