feat(blogo,plugin): ErrorHandler plugin

This commit is contained in:
Guz
2025-01-24 17:00:50 -03:00
parent a19f5c95d2
commit 576f170685

View File

@@ -38,3 +38,8 @@ type Sourcer interface {
Plugin
Source() (fs.FS, error)
}
type ErrorHandler interface {
Plugin
Handle(error) (handled bool)
}