You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
robotop.krasnikov.pro/.history/pages/api/loadingLegisteredCommands_2...

10 lines
291 B

import Select from "../../server/db/select";
const sql = "SELECT * FROM members WHERE 1";
// eslint-disable-next-line @typescript-eslint/explicit-module-boundary-types
export default function handler(req, res) {
Select(sql, function(data){
res.status(200).json(data);
})
}