(private readonly prismaService: PrismaService)
| 7 | @Injectable() |
| 8 | export class UsersService { |
| 9 | constructor(private readonly prismaService: PrismaService) {} |
| 10 | |
| 11 | async store(body: any) { |
| 12 | const { name, lastName, phone } = CreateUserSchema.parse(body); |
nothing calls this directly
no outgoing calls
no test coverage detected