+Datenexport

This commit is contained in:
Simon Martens
2026-01-28 17:26:04 +01:00
parent de37145471
commit b0a57884bf
19 changed files with 3729 additions and 1931 deletions

23
dbmodels/exports.go Normal file
View File

@@ -0,0 +1,23 @@
package dbmodels
const (
EXPORT_STATUS_QUEUED = "queued"
EXPORT_STATUS_RUNNING = "running"
EXPORT_STATUS_COMPLETE = "complete"
EXPORT_STATUS_FAILED = "failed"
EXPORT_TYPE_DATA = "data"
EXPORT_TYPE_FILES = "files"
)
var EXPORT_STATUS_VALUES = []string{
EXPORT_STATUS_QUEUED,
EXPORT_STATUS_RUNNING,
EXPORT_STATUS_COMPLETE,
EXPORT_STATUS_FAILED,
}
var EXPORT_TYPE_VALUES = []string{
EXPORT_TYPE_DATA,
EXPORT_TYPE_FILES,
}