mirror of
https://github.com/BradNut/boredgame
synced 2025-09-08 17:40:22 +00:00
15 lines
No EOL
306 B
TypeScript
15 lines
No EOL
306 B
TypeScript
import type { Actions, PageServerLoad } from '../$types';
|
|
import { Games } from '$root/search/actions';
|
|
|
|
export const load: PageServerLoad = (v) => {
|
|
console.log('page server load request', v)
|
|
|
|
return {
|
|
games: [],
|
|
totalCount: 0
|
|
};
|
|
};
|
|
|
|
export const actions: Actions = {
|
|
default: Games.search,
|
|
} |