diff --git a/d2core/d2components/file_source.go b/d2core/d2components/file_source.go index df9d83ea..d49fee62 100644 --- a/d2core/d2components/file_source.go +++ b/d2core/d2components/file_source.go @@ -14,6 +14,7 @@ var _ akara.ComponentMap = &FileSourceMap{} // AbstractSource is the abstract representation of what a file source is type AbstractSource interface { + Path() string Open(path *FilePathComponent) (d2interface.DataStream, error) }