Emmanuel BENOîT
2fa0e37900
Reviewed-on: #1 Co-authored-by: Emmanuel BENOÎT <tseeker@nocternity.net> Co-committed-by: Emmanuel BENOÎT <tseeker@nocternity.net>
9 lines
161 B
Go
9 lines
161 B
Go
package program // import nocternity.net/gomonop/pkg/program
|
|
|
|
type Program interface {
|
|
CheckArguments() bool
|
|
RunCheck()
|
|
Done()
|
|
}
|
|
|
|
type Builder func() Program
|