This repository has been archived on 2024-07-22. You can view files and clone it, but cannot push or open issues or pull requests.
Zaimki/server/routes/home.js

11 lines
282 B
JavaScript
Raw Normal View History

2021-08-28 07:34:30 -07:00
import { Router } from 'express';
import {buildLocaleList, handleErrorAsync} from "../../src/helpers";
const router = Router();
router.get('/versions', handleErrorAsync(async (req, res) => {
return res.json(buildLocaleList(global.config.locale));
}));
export default router;