Codebase list golang-github-gobuffalo-packr / 94b722eb-c390-4fc1-b3fc-6f73e7bdc6ff/main v2 / jam / store / store.go
94b722eb-c390-4fc1-b3fc-6f73e7bdc6ff/main

Tree @94b722eb-c390-4fc1-b3fc-6f73e7bdc6ff/main (Download .tar.gz)

store.go @94b722eb-c390-4fc1-b3fc-6f73e7bdc6ff/mainraw · 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
}