feat: store import timestamp on entities
1 file changed, 3 insertions(+), 0 deletions(-)
changed files
M internal/nix/package.go → internal/nix/package.go
@@ -1,5 +1,7 @@ package nix +import "time" + type Package struct { Name string Attribute string `storm:"id"`@@ -16,6 +18,7 @@ Maintainers []Maintainer PackageSet string Platforms []string Version string + ImportedAt time.Time `storm:"index"` } type License struct {