Skip to content

Commit

Permalink
Fix bug???
Browse files Browse the repository at this point in the history
  • Loading branch information
UO284262 committed May 3, 2023
1 parent e5a7dbe commit 0b762ce
Showing 1 changed file with 0 additions and 14 deletions.
14 changes: 0 additions & 14 deletions restapi/api.ts
Original file line number Diff line number Diff line change
@@ -1,21 +1,7 @@
import express, { Request, Response, Router } from 'express';
import * as fac from './src/facade';
import { left } from '@cloudinary/url-gen/qualifiers/textAlignment';

const api: Router = express.Router()
/*
api.get(
"/usermanager/find/username",
async (req: Request, res: Response): Promise<Response> => {
try {
const username = req.query.username.toString();
const user = await fac.FactoryLoMap.getUserManager().buscarUsuario(username);
return res.status(200).send(user);
} catch (err) {
return res.status(404).send({ "error": err.message })
}
}
);*/

api.post(
"/usermanager/edit",
Expand Down

0 comments on commit 0b762ce

Please sign in to comment.