clean repo

This commit is contained in:
Paul Coral
2025-07-26 17:51:06 +02:00
parent 8c4e5ebc31
commit 8b327dcb18
27 changed files with 7 additions and 6795 deletions

View File

@@ -11,7 +11,6 @@
"author": "",
"license": "ISC",
"dependencies": {
"@ts-rest/core": "^3.52.1",
"zod": "^3.22.3"
}
}

View File

@@ -1,18 +0,0 @@
import { initContract } from "@ts-rest/core";
import z from "zod";
const c = initContract();
export const contracts = c.router({
hello: {
method: "GET",
path: "/hello",
responses: {
200: z.object({
payload: z.string(),
}),
},
},
});
type C = typeof contracts;

View File

@@ -1 +0,0 @@
export * from "./hello";