10 lines
237 B
JavaScript
10 lines
237 B
JavaScript
/* GET home page. */
|
|
function upload(req, res) {
|
|
if(req.protocol == 'titan:') {
|
|
res.send(`30 gemini://${req.hostname}/upload/\r\n`);
|
|
} else {
|
|
res.send('20 text/gemini\r\n#Upload area ...\r\n');
|
|
}
|
|
}
|
|
|
|
module.exports = upload; |