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

6 lines
149 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 = {
2022-10-05 19:53:43 +00:00
default: Games.search,
2022-09-29 22:22:01 +00:00
}