Izmjenjen backend
This commit is contained in:
10
backend/app.js
Normal file
10
backend/app.js
Normal file
@@ -0,0 +1,10 @@
|
||||
const express = require('express')
|
||||
const app = express()
|
||||
|
||||
app.get('/', function (req, res) {
|
||||
res.send('Hello World!')
|
||||
})
|
||||
|
||||
app.listen(3000, function () {
|
||||
console.log('Example app listening on port 3000!')
|
||||
})
|
||||
Reference in New Issue
Block a user