boredgame/src/routes/search/+page.server.ts

6 lines
148 B
TypeScript
Raw Normal View History

2022-09-29 22:22:01 +00:00
import type { Actions } from '../$types';
import { Games } from '$root/search/actions';
export const actions: Actions = {
search: Games.search,
}