mirror of
https://github.com/cpvalente/ontime.git
synced 2026-08-04 15:08:01 +00:00
17 lines
244 B
JavaScript
17 lines
244 B
JavaScript
export const dbModel = {
|
|
events: [],
|
|
event: {
|
|
title: '',
|
|
url: '',
|
|
publicInfo: '',
|
|
backStageInfo: '',
|
|
},
|
|
settings: {
|
|
app: 'ontime',
|
|
version: 1,
|
|
osc_enabled: false,
|
|
osc_port: 8888,
|
|
lock: false,
|
|
},
|
|
};
|