feat: add build
Some checks failed
Build and release / Build (push) Successful in 1m41s
Build and release / update-release-draft (push) Successful in 18s
Build and release / Release (push) Failing after 1m40s

This commit is contained in:
Morten Olsen
2025-10-16 22:07:56 +02:00
parent 11828da073
commit fabdcae2a5
19 changed files with 270 additions and 23 deletions

View File

@@ -1,8 +1,9 @@
import type { FastifyPluginAsyncZod } from 'fastify-type-provider-zod';
import { z } from 'zod';
import { JwtAuth } from '#root/auth/auth.jwt.ts';
import { statementSchema } from '#root/auth/auth.schemas.ts';
import { Config } from '#root/config/config.ts';
import type { FastifyPluginAsyncZod } from 'fastify-type-provider-zod';
import { z } from 'zod';
const manageEndpoints: FastifyPluginAsyncZod = async (fastify) => {
const config = fastify.services.get(Config);

View File

@@ -1,8 +1,9 @@
import { Config } from '#root/config/config.ts';
import { MqttServer } from '#root/server/server.ts';
import type { FastifyPluginAsyncZod } from 'fastify-type-provider-zod';
import { z } from 'zod';
import { Config } from '#root/config/config.ts';
import { MqttServer } from '#root/server/server.ts';
const messageEndpoints: FastifyPluginAsyncZod = async (fastify) => {
const config = fastify.services.get(Config);