feat(webui): implement states list

This commit is contained in:
Julien Dessaux 2025-01-22 00:46:49 +01:00
parent 7885b19b54
commit 09885ef1e4
Signed by: adyxax
GPG key ID: F92E51B86E07177E
10 changed files with 117 additions and 12 deletions

13
pkg/model/state.go Normal file
View file

@ -0,0 +1,13 @@
package model
import (
"time"
)
type State struct {
Created time.Time
Id int
Lock *string
Path string
Updated time.Time
}