1
0
Fork 0
gmscreen/src/db/publishers.ts

12 lines
237 B
TypeScript

import { publisherTable } from './schema';
type Publisher = typeof publisherTable.$inferInsert;
const publishers: Array<Publisher> = [
{
name: 'Limithron',
url: 'https://www.limithron.com/',
}
]
export default publishers;