mirror of
https://activitypub.software/TransFem-org/Sharkey.git
synced 2024-11-16 16:57:14 +01:00
8 lines
250 B
TypeScript
8 lines
250 B
TypeScript
import * as path from 'path';
|
|
import * as express from 'express';
|
|
|
|
const app = express.Router();
|
|
app.get('/apple-touch-icon.png', (req, res) =>
|
|
res.sendFile(path.resolve(__dirname + '/../../resources/apple-touch-icon.png')));
|
|
|
|
module.exports = app;
|