diff options
author | Julien Dessaux | 2025-01-22 00:46:49 +0100 |
---|---|---|
committer | Julien Dessaux | 2025-01-22 00:46:49 +0100 |
commit | 09885ef1e4b7610d05377596f02d08c5079c0434 (patch) | |
tree | 9c8322ea718f1eb721a4c685cb95386fa84bb797 /pkg/model/state.go | |
parent | chore(webui): refactor login and session middleware handling (diff) | |
download | tfstated-main.tar.gz tfstated-main.tar.bz2 tfstated-main.zip |
Diffstat (limited to '')
-rw-r--r-- | pkg/model/state.go | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/pkg/model/state.go b/pkg/model/state.go new file mode 100644 index 0000000..8e1c277 --- /dev/null +++ b/pkg/model/state.go @@ -0,0 +1,13 @@ +package model + +import ( + "time" +) + +type State struct { + Created time.Time + Id int + Lock *string + Path string + Updated time.Time +} |