From 64776654f36b935c2411fecd541bdfd3bdd641f5 Mon Sep 17 00:00:00 2001 From: "Gustavo L de Mello (Guz)" Date: Tue, 14 Jan 2025 17:35:55 -0300 Subject: [PATCH] fix(blogo,plugins): update interfaces of plugins to use the new filesystem types --- blogo/plugins.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/blogo/plugins.go b/blogo/plugins.go index e2a28d0..e7352e1 100644 --- a/blogo/plugins.go +++ b/blogo/plugins.go @@ -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) }