import { Router } from "express";
import apiV1 from "./v1";
const api = Router();

api.use("/v1", apiV1);

export default api;