1
1
mirror of https://github.com/kokonect-link/cherrypick synced 2024-11-02 16:15:57 +09:00
cherrypick/src/web/manifest.ts

7 lines
191 B
TypeScript
Raw Normal View History

2016-12-29 07:49:51 +09:00
import * as express from 'express';
const app = express.Router();
app.get('/manifest.json', (req, res) => res.sendFile(__dirname + '/../../resources/manifest.json'));
module.exports = app;