Add comments to Base type

This commit is contained in:
Jguer 2019-10-13 20:22:57 +01:00
parent c44f738ba8
commit 29b051134a
No known key found for this signature in database
GPG key ID: 6D6CC9BEA8556B35

View file

@ -6,16 +6,20 @@ import (
rpc "github.com/mikkeloscar/aur"
)
// Base is an AUR base package
type Base []*rpc.Pkg
// Pkgbase returns the first base package.
func (b Base) Pkgbase() string {
return b[0].PackageBase
}
// Version returns the first base package version.
func (b Base) Version() string {
return b[0].Version
}
// URLPath returns the first base package URL.
func (b Base) URLPath() string {
return b[0].URLPath
}