mirror of https://github.com/markbates/pkger.git
15 lines
316 B
Go
15 lines
316 B
Go
|
package embed
|
||
|
|
||
|
import (
|
||
|
"github.com/markbates/pkger/here"
|
||
|
"github.com/markbates/pkger/pkging"
|
||
|
)
|
||
|
|
||
|
type File struct {
|
||
|
Info *pkging.FileInfo `json:"info"`
|
||
|
Here here.Info `json:"her"`
|
||
|
Path here.Path `json:"path"`
|
||
|
Data []byte `json:"data"`
|
||
|
Parent here.Path `json:"parent"`
|
||
|
}
|