github.com/falafeljan/pkger@v0.18.0/pkging/embed/file.go (about)

     1  package embed
     2  
     3  import (
     4  	"github.com/markbates/pkger/here"
     5  	"github.com/markbates/pkger/pkging"
     6  )
     7  
     8  type File struct {
     9  	Info   *pkging.FileInfo `json:"info"`
    10  	Here   here.Info        `json:"her"`
    11  	Path   here.Path        `json:"path"`
    12  	Data   []byte           `json:"data"`
    13  	Parent here.Path        `json:"parent"`
    14  }