mirror of
https://github.com/chrisbenincasa/tunarr
synced 2026-04-21 13:37:15 +00:00
* This is a nightmare * Checkpointing.... getting closer * First cut - packaging the server in a docker container * Remove busted bundles * Minify build * Some common commands for building - we're going to look into proper monorepo solutions soon * Remove dependency on serve-static * Add web serving, full-stack docker target, and Nvidia container support * Remove test action graph for now
5 lines
87 B
TypeScript
5 lines
87 B
TypeScript
import z from 'zod';
|
|
|
|
export const ErrorSchema = z.object({
|
|
message: z.string(),
|
|
});
|