mirror of
https://github.com/KevinMidboe/brewPi.git
synced 2025-10-29 08:40:13 +00:00
7 lines
173 B
TypeScript
7 lines
173 B
TypeScript
import brews from '../../brews.json';
|
|
import type { PageServerLoad } from './$types';
|
|
|
|
export const load: PageServerLoad = async () => {
|
|
return { brews: brews.brews };
|
|
};
|