Initial 2024-01-26

This commit is contained in:
root
2024-01-26 07:11:35 +12:00
commit d03c481b33
33 changed files with 4224 additions and 0 deletions

28
main.go Normal file
View File

@@ -0,0 +1,28 @@
package main
import (
// "fmt"
"os"
"t/z/cmpSnipper"
)
func main() {
var app cmpSnipper.App;
var err error
err = app.Prep()
if err != nil {
os.Exit(1)
}
err = app.Proc()
if err != nil {
os.Exit(1)
}
os.Exit(0)
}