feat(webui): implement states list
This commit is contained in:
parent
7885b19b54
commit
09885ef1e4
10 changed files with 117 additions and 12 deletions
13
pkg/model/state.go
Normal file
13
pkg/model/state.go
Normal file
|
@ -0,0 +1,13 @@
|
|||
package model
|
||||
|
||||
import (
|
||||
"time"
|
||||
)
|
||||
|
||||
type State struct {
|
||||
Created time.Time
|
||||
Id int
|
||||
Lock *string
|
||||
Path string
|
||||
Updated time.Time
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue