mirror of
https://github.com/samanhappy/mcphub.git
synced 2026-01-05 22:28:24 -05:00
Add PostgreSQL-backed data storage support (#444)
Co-authored-by: samanhappy <samanhappy@gmail.com>
This commit is contained in:
@@ -1,7 +1,12 @@
|
||||
import { VectorEmbedding } from './VectorEmbedding.js';
|
||||
import User from './User.js';
|
||||
import Server from './Server.js';
|
||||
import Group from './Group.js';
|
||||
import SystemConfig from './SystemConfig.js';
|
||||
import UserConfig from './UserConfig.js';
|
||||
|
||||
// Export all entities
|
||||
export default [VectorEmbedding];
|
||||
export default [VectorEmbedding, User, Server, Group, SystemConfig, UserConfig];
|
||||
|
||||
// Export individual entities for direct use
|
||||
export { VectorEmbedding };
|
||||
export { VectorEmbedding, User, Server, Group, SystemConfig, UserConfig };
|
||||
|
||||
Reference in New Issue
Block a user