initial commit

This commit is contained in:
Michael Stapelberg
2020-06-20 08:01:02 +02:00
commit 8410782ab8
9 changed files with 751 additions and 0 deletions

View File

@@ -0,0 +1,18 @@
package main
import (
"log"
"github.com/stapelberg/qrbill"
)
func logic() error {
return qrbill.Generate()
//return nil
}
func main() {
if err := logic(); err != nil {
log.Fatal(err)
}
}