8 lines
257 B
TypeScript
8 lines
257 B
TypeScript
import { Injectable } from '@nestjs/common';
|
|
import { InjectKysely } from 'nestjs-kysely';
|
|
import { KyselyDB } from '../../types/kysely.types';
|
|
|
|
@Injectable()
|
|
export class PageOrderingRepo {
|
|
constructor(@InjectKysely() private readonly db: KyselyDB) {}
|
|
}
|