mirror of
https://github.com/TheRealOwenRees/echecsfrance.git
synced 2026-07-23 12:36:57 +00:00
9 lines
192 B
TypeScript
9 lines
192 B
TypeScript
import { addTournament } from "./procedures/addTournament";
|
|
import { router } from "./trpc";
|
|
|
|
export const appRouter = router({
|
|
addTournament,
|
|
});
|
|
|
|
export type AppRouter = typeof appRouter;
|