Files
schedtxt_api/app.js
T
kdeng00 89cc0b822d Added template routes
Starting with creating a user
2023-01-22 19:49:33 -05:00

27 lines
558 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
app.post('/api/v1/text/new', (req, res) => {
res.send('Create new text')
})
app.post('/api/v1/text/queue', (req, res) => {
res.send('Queue text')
})
app.listen(port, () => {
console.log(`textsender-api listening on port ${port}`)
})