Skip to content

Commit

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

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

0 comments on commit d7595db

Please sign in to comment.