Codebase list golang-github-gobuffalo-packr / 68d1d2c1-20cc-4f80-9a83-dc375c1fc241/upstream v2 / jam / store / store.go
68d1d2c1-20cc-4f80-9a83-dc375c1fc241/upstream

Tree @68d1d2c1-20cc-4f80-9a83-dc375c1fc241/upstream (Download .tar.gz)

store.go @68d1d2c1-20cc-4f80-9a83-dc375c1fc241/upstreamraw · history · blame

package store

import (
	"github.com/gobuffalo/packr/v2/jam/parser"
)

type Store interface {
	FileNames(*parser.Box) ([]string, error)
	Files(*parser.Box) ([]*parser.File, error)
	Pack(*parser.Box) error
	Clean(*parser.Box) error
}