mirror of
https://github.com/20kaushik02/spotify-manager.git
synced 2025-12-06 09:54:07 +00:00
11 lines
253 B
TypeScript
11 lines
253 B
TypeScript
import { Router } from "express";
|
|
const router: Router = Router();
|
|
|
|
import { fetchUserPlaylists } from "../controllers/playlists.ts";
|
|
|
|
// import { validate } from "../validators/index.ts";
|
|
|
|
router.get("/me", fetchUserPlaylists);
|
|
|
|
export default router;
|