Compare commits

...

1 Commits
main ... api

Author SHA1 Message Date
3ddabb7f2e merge with jeni 2022-02-02 11:00:36 +05:30

View File

@ -40,7 +40,10 @@ app.post('/addService',async(req,res)=>{
})
});
//GET SERVICE LIST
app.get('/',async(req,res)=>{
res.send("welcome to open close");
});
//GET SERVICE LIST
app.get('/service',async(req,res)=>{
await models.service.findAll({where:{status:1}}).then(result=>{