edge/pkg/bundle/bundle.go

12 lines
152 B
Go
Raw Normal View History

2023-02-09 12:16:36 +01:00
package bundle
import (
"io"
"os"
)
type Bundle interface {
File(string) (io.ReadCloser, os.FileInfo, error)
Dir(string) ([]os.FileInfo, error)
}