fix(blogo,plugins): update interfaces of plugins to use the new filesystem types

This commit is contained in:
Guz
2025-01-14 17:35:55 -03:00
parent 2183111ff5
commit 64776654f3

View File

@@ -37,10 +37,10 @@ type PluginGroup interface {
type RendererPlugin interface {
Plugin
Render(src fs.File, out io.Writer) error
Render(src File, out io.Writer) error
}
type SourcerPlugin interface {
Plugin
Source() (fs.FS, error)
Source() (FS, error)
}