refactor api routes

This commit is contained in:
Claeb101 2023-03-04 19:43:53 -05:00
parent 3cf99f0fd4
commit 527e58b2b1
4 changed files with 28 additions and 10 deletions

View File

@ -1,8 +1,8 @@
import * as dotenv from "dotenv";
import { Router } from "express";
dotenv.config();
import twilio from "twilio";
import express from "express";
const accountSid = process.env.TWILIO_ACCOUNT_SID;
const authToken = process.env.TWILIO_AUTH_TOKEN;
@ -11,8 +11,7 @@ const phone_number = process.env.TWILIO_PHONE_NUMBER;
const client = new twilio.Twilio(accountSid, authToken);
const VoiceResponse = twilio.twiml.VoiceResponse;
const app = express();
app.use(express.urlencoded({ extended: false }));
const app = Router();
app.post("/receive", (req, res) => {
// Use the Twilio Node.js SDK to build an XML response
@ -58,10 +57,4 @@ app.post("/respond", async (req, res) => {
res.send(twiml.toString());
});
// Create an HTTP server and listen for requests on port 3000
app.listen(3000, () => {
console.log(
"Now listening on port 3000. " +
"Be sure to restart when you make code changes!"
);
});
export default app

5
src/db.js Normal file
View File

@ -0,0 +1,5 @@
import { Prisma, PrismaClient } from "@prisma/client";
const db = new PrismaClient()
export {db};

15
src/index.js Normal file
View File

@ -0,0 +1,15 @@
import express from "express";
import call from "./call.js";
const app = express();
app.use(express.urlencoded({ extended: false }));
app.use('/call', call)
// Create an HTTP server and listen for requests on port 3000
app.listen(3000, () => {
console.log(
"Now listening on port 3000. " +
"Be sure to restart when you make code changes!"
);
});

5
src/session.js Normal file
View File

@ -0,0 +1,5 @@
import { db } from "./db";
const session = () => {
db.session.create({})
}