sync/src/web/routes/iframe.js

8 lines
165 B
JavaScript
Raw Normal View History

import { sendPug } from '../pug';
export default function initialize(app) {
app.get('/iframe', (req, res) => {
return sendPug(res, 'iframe');
});
}