refactor: reorganize project in order to include automation ()

Reviewed-on: 
Co-authored-by: Emmanuel BENOÎT <tseeker@nocternity.net>
Co-committed-by: Emmanuel BENOÎT <tseeker@nocternity.net>
This commit is contained in:
Emmanuel BENOîT 2024-07-19 22:01:34 +02:00 committed by Emmanuel BENOîT
parent 8feb34bbe6
commit 2fa0e37900
21 changed files with 2496 additions and 195 deletions
pkg/program

9
pkg/program/program.go Normal file
View file

@ -0,0 +1,9 @@
package program // import nocternity.net/gomonop/pkg/program
type Program interface {
CheckArguments() bool
RunCheck()
Done()
}
type Builder func() Program