bug fix and improvment remove driver

This commit is contained in:
Adrian Zuercher
2025-07-31 08:35:18 +02:00
parent c15710ddec
commit 6dffd1fad4
3 changed files with 26 additions and 39 deletions

View File

@@ -9,11 +9,12 @@ import (
// publish model
type Publish struct {
Event string `json:"event,omitempty"` // publish event onCreate|onChange|onDelete
Uuid uuid.UUID `json:"uuid,omitempty"` // universally unique identifier
Path string `json:"path,omitempty"` // dbm path
Type Type `json:"type,omitempty"` // dbm datatype
Value any `json:"value,omitempty"` // dbm value
Event string `json:"event,omitempty"` // publish event onCreate|onChange|onDelete
Uuid uuid.UUID `json:"uuid,omitempty"` // universally unique identifier
Drivers *Drivers `json:"drivers,omitempty"` // assigned drivers
Path string `json:"path,omitempty"` // dbm path
Type Type `json:"type,omitempty"` // dbm datatype
Value any `json:"value,omitempty"` // dbm value
}
// returns input parameter as assigned dbm datatype