UNPKG

constatic

Version:

Constatic is a CLI for creating and managing modern TypeScript projects, providing an organized structure and features that streamline development.

7 lines (6 loc) 235 B
import type { Client } from "discord.js"; import type { FastifyInstance } from "fastify"; import { homeRoute } from "./home.js"; export function registerRoutes(app: FastifyInstance, client: Client<true>) { homeRoute(app, client) }