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) 227 B
import type { Client } from "discord.js"; import type { Express } from "express"; import { homeRoutes } from "./home.js"; export function registerRoutes(app: Express, client: Client<true>){ homeRoutes(app, client); }