2023-05-23 20:53:26 -04:00
|
|
|
import { RequestHandler } from "express";
|
2023-05-19 15:22:48 -03:00
|
|
|
|
|
|
|
const getAllianceController: RequestHandler = (_req, res) => {
|
2023-05-23 20:42:06 -04:00
|
|
|
res.sendStatus(200);
|
2023-05-19 15:22:48 -03:00
|
|
|
};
|
|
|
|
|
|
|
|
export { getAllianceController };
|