refactor: updated plugin interface

This commit is contained in:
David Allen 2025-08-18 11:03:54 -06:00
parent fe67674829
commit fa949baafd
Signed by: towk
GPG key ID: 0430CDBE22619155

View file

@ -7,7 +7,7 @@ type Plugin interface {
Metadata() map[string]string Metadata() map[string]string
Init() error Init() error
Run() error Run(args []string) error
Cleanup() error Cleanup() error
} }