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...

9 lines
213 B

import Select from "../../server/db/select";
const sql = "SELECT * FROM members WHERE 1";
export default function handler(req, res) {
Select(sql, function(data){
res.status(200).json(data);
})
}