gitlab_monitor/db/index.ts
zhaoyingbo 18a95387ee
All checks were successful
CI Monitor CI/CD / build-image (push) Successful in 33s
CI Monitor CI/CD / deploy (push) Successful in 37s
chore: 更新lint-staged和commitlint配置
2024-07-25 01:09:24 +00:00

14 lines
192 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