15 lines
413 B
Go
15 lines
413 B
Go
package registry
|
|
|
|
import "time"
|
|
|
|
type Entry struct {
|
|
Key string `json:"key"`
|
|
Filename string `json:"filename"`
|
|
OriginalPath string `json:"originalPath"`
|
|
HasSymlink bool `json:"hasSymlink"`
|
|
CreatedAt time.Time `json:"createdAt"`
|
|
UpdatedAt time.Time `json:"updatedAt"`
|
|
Tags []string `json:"tags,omitempty"`
|
|
Description string `json:"description,omitempty"`
|
|
}
|