summaryrefslogtreecommitdiff
path: root/pkg/model/state.go
diff options
context:
space:
mode:
Diffstat (limited to 'pkg/model/state.go')
-rw-r--r--pkg/model/state.go4
1 files changed, 3 insertions, 1 deletions
diff --git a/pkg/model/state.go b/pkg/model/state.go
index 8e1c277..12f9e83 100644
--- a/pkg/model/state.go
+++ b/pkg/model/state.go
@@ -2,11 +2,13 @@ package model
import (
"time"
+
+ "go.n16f.net/uuid"
)
type State struct {
Created time.Time
- Id int
+ Id uuid.UUID
Lock *string
Path string
Updated time.Time