15 lines
168 B
Go
15 lines
168 B
Go
package model
|
|
|
|
import (
|
|
"time"
|
|
|
|
"go.n16f.net/uuid"
|
|
)
|
|
|
|
type State struct {
|
|
Created time.Time
|
|
Id uuid.UUID
|
|
Lock *string
|
|
Path string
|
|
Updated time.Time
|
|
}
|