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