gitlab_monitor/db/index.ts
zhaoyingbo a4555ac862
All checks were successful
CI Monitor CI/CD / build-image (push) Successful in 29s
CI Monitor CI/CD / deploy (push) Successful in 30s
feat: 接入eslint
2024-07-24 10:56:26 +00:00

14 lines
198 B
TypeScript

import pipeline from "./pipeline";
import project from "./project";
import user from "./user";
import view from "./view";
const db = {
project,
pipeline,
user,
view,
};
export default db;