chore: seperate into packages

This commit is contained in:
Morten Olsen
2025-12-10 10:26:14 +01:00
parent f9494c88e2
commit d02102977a
40 changed files with 753 additions and 1175 deletions

View File

@@ -1,5 +1,5 @@
import 'fastify';
import type { Services } from './utils/utils.services.ts';
import type { StashRuntime } from '@morten-olsen/stash-runtime';
// eslint-disable-next-line
declare type ExplicitAny = any;
@@ -7,6 +7,6 @@ declare type ExplicitAny = any;
declare module 'fastify' {
// eslint-disable-next-line
export interface FastifyInstance {
services: Services;
runtime: StashRuntime;
}
}