init commit
This commit is contained in:
14
internal/registry/entry.go
Normal file
14
internal/registry/entry.go
Normal file
@@ -0,0 +1,14 @@
|
||||
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"`
|
||||
}
|
||||
Reference in New Issue
Block a user