Compare commits

..

No commits in common. "lazygit-test" and "main" have entirely different histories.

View file

@ -8,7 +8,7 @@ export class CatsService {
constructor(
@InjectRepository(Cat)
private catsRepository: Repository<Cat>,
) { }
) {}
private readonly logger = new Logger(CatsService.name);
@ -26,9 +26,4 @@ export class CatsService {
this.logger.log("[remove] Starting...");
await this.catsRepository.delete(id)
}
lazygitTest(): void {
this.logger.log("[lazygitTest] test no. 1")
this.logger.log("[lazygitTest] Test no. 2")
}
}