initial push from external dev branches

This commit is contained in:
iFlip721
2026-06-11 16:40:21 -04:00
parent 986e83632b
commit 245034a43a
182 changed files with 15465 additions and 0 deletions

11
server/dist/models/StreamSession.js vendored Normal file
View File

@@ -0,0 +1,11 @@
import { Schema, model } from 'mongoose';
const StreamSessionSchema = new Schema({
ip: { type: String, required: true },
region: { type: String, required: true },
client: { type: String, required: true },
joined: { type: String, required: true },
bitrate: { type: String, required: true },
order: { type: Number, required: true, index: true },
}, { versionKey: false });
export const StreamSession = model('StreamSession', StreamSessionSchema);
//# sourceMappingURL=StreamSession.js.map