2019-08-02 05:34:32 +03:00
|
|
|
package pkger
|
2019-07-31 00:21:26 +03:00
|
|
|
|
|
|
|
import (
|
2019-08-05 00:13:27 +03:00
|
|
|
"github.com/markbates/pkger/here"
|
2019-07-31 00:21:26 +03:00
|
|
|
)
|
|
|
|
|
2019-08-02 06:21:37 +03:00
|
|
|
func Info(p string) (here.Info, error) {
|
2019-08-02 07:22:17 +03:00
|
|
|
return rootIndex.Info(p)
|
2019-07-31 00:21:26 +03:00
|
|
|
}
|
|
|
|
|
2019-08-03 23:36:56 +03:00
|
|
|
func Stat() (here.Info, error) {
|
|
|
|
return rootIndex.Stat()
|
2019-07-31 00:21:26 +03:00
|
|
|
}
|