Skip to content

Commit dbbd207

Browse files
authored
Create lamo.js
1 parent 99c60c7 commit dbbd207

File tree

1 file changed

+11
-0
lines changed

1 file changed

+11
-0
lines changed

lamo.js

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
const express = require('express')
2+
const app = express()
3+
const port = 3000
4+
5+
app.get('/', (req, res) => {
6+
res.send('add this link at :- https://ruptime.asitro.ml/add')
7+
})
8+
9+
app.listen(port, () => {
10+
console.log(`Example app listening on port ${port}`)
11+
})

0 commit comments

Comments
 (0)