folder restructure

This commit is contained in:
cv
2021-05-28 13:16:34 +02:00
parent 1491fbbb97
commit aa53f2c9cf
18 changed files with 17 additions and 71 deletions
+16
View File
@@ -0,0 +1,16 @@
export const dbModel = {
events: [],
event: {
title: '',
url: '',
publicInfo: '',
backstageInfo: '',
},
settings: {
app: 'ontime',
version: 1,
osc_enabled: false,
osc_port: 8888,
lock: false,
},
};
+21
View File
@@ -0,0 +1,21 @@
export const event = {
title: '',
subtitle: '',
presenter: '',
note: '',
timeStart: 0,
timeEnd: 0,
isPublic: false,
type: 'event',
revision: 0,
};
export const delay = {
duration: 0,
type: 'delay',
revision: 0,
};
export const block = {
type: 'block',
};