10 lines
259 B
JavaScript
10 lines
259 B
JavaScript
/* GET home page. */
|
|
function input(req, res) {
|
|
if(req.search === '') {
|
|
res.send('10 Your name:\r\n');
|
|
} else {
|
|
res.send(`20 text/gemini\r\n# Rezultati iskanja:\r\nIskali ste: ${req.search}\r\n`);
|
|
}
|
|
}
|
|
|
|
module.exports = input; |