2024-07-19 22:01:34 +02:00
|
|
|
package program // import nocternity.net/gomonop/pkg/program
|
|
|
|
|
2024-07-19 23:46:33 +02:00
|
|
|
import "nocternity.net/gomonop/pkg/plugin"
|
|
|
|
|
2024-07-19 22:01:34 +02:00
|
|
|
type Program interface {
|
2024-07-19 23:46:33 +02:00
|
|
|
Output() *plugin.Plugin
|
2024-07-19 22:01:34 +02:00
|
|
|
CheckArguments() bool
|
|
|
|
RunCheck()
|
|
|
|
}
|
|
|
|
|
|
|
|
type Builder func() Program
|