about summary refs log tree commit diff stats
path: root/internal/packages/package.go
diff options
context:
space:
mode:
Diffstat (limited to 'internal/packages/package.go')
-rw-r--r--internal/packages/package.go36
1 files changed, 0 insertions, 36 deletions
diff --git a/internal/packages/package.go b/internal/packages/package.go
deleted file mode 100644
index e864b18..0000000
--- a/internal/packages/package.go
+++ /dev/null
@@ -1,36 +0,0 @@
-package packages
-
-type Package struct {
-	Name    string
-	Meta    Meta
-	Version string
-}
-
-type Meta struct {
-	Broken          bool
-	Description     string
-	LongDescription string
-	Homepages       []string
-	Licenses        []License
-	MainProgram     string
-	Maintainers     []Maintainer
-	Platforms       []string
-	Position        string
-}
-
-type License struct {
-	FullName    string
-	Name        string
-	SPDXId      string
-	URL         string
-	AppendixURL string
-}
-
-type Maintainer struct {
-	Github string
-	Name   string
-}
-
-func (*Package) BleveType() string {
-	return "package"
-}