Codebase list golang-github-gobuffalo-packr / cbdaebd v2 / jam / store / store.go
cbdaebd

Tree @cbdaebd (Download .tar.gz)

store.go @cbdaebdraw · 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
}