Skip to content

Commit

Permalink
fix: πŸ› UserTasksService type error
Browse files Browse the repository at this point in the history
  • Loading branch information
zhumeisongsong committed Dec 17, 2024
1 parent 45875fa commit 60b5540
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions libs/tasks/application/src/lib/user-tasks.service.ts
Original file line number Diff line number Diff line change
@@ -1,10 +1,9 @@
import { Injectable } from '@nestjs/common';
import { UserTask } from '@tasks/domain';

@Injectable()
export class UserTasksService {
async findMany(
userId: string,
): Promise<[]> {
async findAll(userId: string): Promise<UserTask[]> {
// TODO: Implement this
return [];
}
Expand Down

0 comments on commit 60b5540

Please sign in to comment.