mirror of https://github.com/markbates/pkger.git
18 lines
355 B
Go
18 lines
355 B
Go
// TODO: need to populate in memory cache when packed.
|
|
// you can't use go list, etc... in prod
|
|
package pkger
|
|
|
|
import (
|
|
"github.com/gobuffalo/here"
|
|
)
|
|
|
|
func Info(p string) (here.Info, error) {
|
|
return here.Cache(p, here.Package)
|
|
}
|
|
|
|
func Current() (here.Info, error) {
|
|
return here.Cache("", func(string) (here.Info, error) {
|
|
return here.Current()
|
|
})
|
|
}
|