pkger/pkging/embed/file.go

15 lines
316 B
Go
Raw Normal View History

2019-10-21 00:52:16 +03:00
package embed
import (
"github.com/markbates/pkger/here"
2019-10-21 00:52:16 +03:00
"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"`
}