This is maybe a typo. You wrote @Injectable instead of @Injectable().
import { Injectable } from "@nestjs/common";
import { User } from "./users.model";
@Injectable()
export class UsersService {
users: Array<User> = [];
getUsers() {
return this.users;
}
}
The decorator needs to be corrected to @Injectable().