mirror of
https://github.com/Spengreb/sync.git
synced 2026-05-13 19:22:05 +00:00
8 lines
165 B
JavaScript
8 lines
165 B
JavaScript
|
|
import { sendPug } from '../pug';
|
||
|
|
|
||
|
|
export default function initialize(app) {
|
||
|
|
app.get('/iframe', (req, res) => {
|
||
|
|
return sendPug(res, 'iframe');
|
||
|
|
});
|
||
|
|
}
|