🌳
pt0/gamesapp/serverF/getGamesDbF.mts
2import { Kysely } from 'kysely'
3import type { GamesDB } from './gamesDbF.d.ts'
5export const getGamesDb = (): Kysely<GamesDB> => {
6 const {dbKys} = getDb()
7 return dbKys as Kysely<GamesDB>
8}