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