You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
9 lines
294 B
9 lines
294 B
import api_controller from "../controller/api_controller.js"; |
|
import { Router } from "express"; |
|
|
|
const router = Router(); |
|
|
|
router.route("/convert/hiragana").post(api_controller.convertToHiragana); |
|
router.route("/convert/katakana").post(api_controller.convertToKatakana); |
|
|
|
export default router; |