Files
dashboard/backend/src/models/index.js
T

10 lines
390 B
JavaScript
Raw Normal View History

2026-06-09 16:36:23 +08:00
const Brand = require('./Brand');
const Model = require('./Model');
const Ota = require('./Ota');
const BlackList = require('./BlackList');
const OtaTargetDevice = require('./OtaTargetDevice');
const ShareCodeLog = require('./ShareCodeLog');
2026-06-18 17:37:08 +08:00
const DashboardUser = require('./DashboardUser');
2026-06-09 16:36:23 +08:00
module.exports = { Brand, Model, Ota, BlackList, OtaTargetDevice, ShareCodeLog, DashboardUser };