7 lines
132 B
TypeScript
7 lines
132 B
TypeScript
import type { ServerInit } from '@sveltejs/kit';
|
|
|
|
export const init: ServerInit = async () => {
|
|
|
|
// TODO: initialize db
|
|
|
|
}; |