mirror of
https://github.com/SrIzan10/api.git
synced 2026-06-06 00:46:48 +00:00
6 lines
138 B
TypeScript
6 lines
138 B
TypeScript
import type { Handler } from "express"
|
|
|
|
export const get: Handler = async (req, res) => {
|
|
res.send('Disabled due to security reasons')
|
|
}
|