refactor: added more implementation details

This commit is contained in:
David Allen 2025-08-14 07:40:30 -06:00
parent 50e6b53091
commit a1a9c6407f
Signed by: towk
GPG key ID: 793B2924A49B3A3F
6 changed files with 86 additions and 4 deletions

View file

@ -1,14 +1,16 @@
package configurator
type Plugin interface {
// plugin data
Name() string
Version() string
Description() string
Metadata() map[string]string
// run the plugin
Init() error
Run() error
Cleanup() error
}
func RunPlugin() {
}