Skip to content

Instantly share code, notes, and snippets.

@fhsinchy
Last active May 11, 2021 16:49
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save fhsinchy/b369d7d5e43a2092ca6b4f82d16a1df9 to your computer and use it in GitHub Desktop.
Save fhsinchy/b369d7d5e43a2092ca6b4f82d16a1df9 to your computer and use it in GitHub Desktop.
import { Router } from "https://deno.land/x/oak@v6.5.0/mod.ts";
import { index, } from "../controllers/blogs.ts";
const router = new Router();
router.get("/blogs", index);
export default router;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment