30 lines
605 B
JavaScript
30 lines
605 B
JavaScript
const express = require('express')
|
|
const app = express()
|
|
const port = 3000
|
|
|
|
app.use(express.json())
|
|
|
|
// User Routes
|
|
app.post('/api/v1/user/new', (req, res) => {
|
|
res.send('Posting')
|
|
console.log(req.body)
|
|
|
|
let username = req.body['username']
|
|
console.log(`Username: ${username}`)
|
|
})
|
|
|
|
// Text Routes
|
|
// Add a new text
|
|
app.post('/api/v1/text/new', (req, res) => {
|
|
res.send('Create new text')
|
|
})
|
|
|
|
// Queue a text for sending
|
|
app.post('/api/v1/text/queue', (req, res) => {
|
|
res.send('Queue text')
|
|
})
|
|
|
|
app.listen(port, () => {
|
|
console.log(`textsender-api listening on port ${port}`)
|
|
})
|