Edit proto & add Diagdate
All checks were successful
Build and Push Docker Image / build_and_push (push) Successful in 3m29s

This commit is contained in:
2025-02-10 12:07:54 +01:00
parent 5b4eff783c
commit 726bb4643c
4 changed files with 56 additions and 32 deletions

View File

@@ -1,5 +1,7 @@
package storage
import "time"
type Diag struct {
ID string `json:"id" bson:"_id"`
Name string `json:"name"`
@@ -8,4 +10,5 @@ type Diag struct {
Ui_schema string `json:"ui_schema"`
Data map[string]any `json:"data"`
Deleted bool `json:"deleted"`
Diagdate time.Time `json:"diagdate"`
}