2023-06-01 17:08:05 -07:00
|
|
|
import { RequestHandler } from "express";
|
|
|
|
|
|
|
|
const logoutController: RequestHandler = (_req, res) => {
|
|
|
|
res.writeHead(200, {
|
|
|
|
"Content-Type": "text/html",
|
2023-06-03 19:24:57 -07:00
|
|
|
"Content-Length": 1
|
2023-06-01 17:08:05 -07:00
|
|
|
});
|
2023-06-03 19:24:57 -07:00
|
|
|
res.end("1");
|
2023-06-01 17:08:05 -07:00
|
|
|
};
|
|
|
|
|
2023-06-02 00:20:49 -03:00
|
|
|
export { logoutController };
|