starting to gut

This commit is contained in:
2024-11-08 12:18:38 -07:00
parent 351bac3ebf
commit 011c28f0fd
7 changed files with 153 additions and 71 deletions

View File

@@ -1,9 +1,6 @@
import type { CreateNextContextOptions } from '@trpc/server/adapters/next';
export const createContext = async () => {
return {
};
export const createTrpcContext = async () => {
return {};
};
export type Context = typeof createContext;
export type TrpcContext = typeof createTrpcContext;