test
Some checks failed
ci / ci (push) Failing after 29s

This commit is contained in:
= 2026-02-24 23:17:10 +04:00
parent e98758efe2
commit e1616c7bdc
2 changed files with 3 additions and 1 deletions

View file

@ -2,6 +2,9 @@ import { Injectable } from '@nestjs/common';
@Injectable() @Injectable()
export class AppService { export class AppService {
/**
* Fonction qui retourne une salutation
*/
getHello(): string { getHello(): string {
return 'Hello World!'; return 'Hello World!';
} }

View file

@ -14,7 +14,6 @@ export const DatabaseProvider: Provider = {
process.env.DATABASE_URL || 'postgres://user:pass@localhost:5432/db'; process.env.DATABASE_URL || 'postgres://user:pass@localhost:5432/db';
const client = postgres(connectionString); const client = postgres(connectionString);
// eslint-disable-next-line @typescript-eslint/no-unsafe-call, @typescript-eslint/no-unsafe-assignment
return drizzle(client, { schema }) as DrizzleDB; return drizzle(client, { schema }) as DrizzleDB;
}, },
}; };