Codebase list golang-github-gobuffalo-packr / 93a1f3d v2 / file / resolver / packable.go
93a1f3d

Tree @93a1f3d (Download .tar.gz)

packable.go @93a1f3draw · history · blame

1
2
3
4
5
6
7
package resolver

import "github.com/gobuffalo/packr/v2/file"

type Packable interface {
	Pack(name string, f file.File) error
}