UserService represents a service for managing users.
| 17 | |
| 18 | // UserService represents a service for managing users. |
| 19 | type UserService struct { |
| 20 | db *DB |
| 21 | } |
| 22 | |
| 23 | // NewUserService returns a new instance of UserService. |
| 24 | func NewUserService(db *DB) *UserService { |
nothing calls this directly
no outgoing calls
no test coverage detected