Add apilog route and remove unused files

This commit is contained in:
newtbot
2024-01-29 03:40:49 +08:00
parent 9c5aaed414
commit 8836a3cfd4
6 changed files with 48 additions and 477 deletions

View File

@ -0,0 +1,11 @@
const { api_log_Model } = require("../database/model/apiLogModel");
const {Op} = require("sequelize");
async function getAllLog(){
return await api_log_Model.findAll();
}
module.exports = { getAllLog };