Struct generation complete, pipes to stdout

* Database driver config & flag complete
* Table flag complete, will use all tables if non specified
This commit is contained in:
Patrick O'brien 2016-02-23 18:27:32 +10:00
parent f72d646e66
commit b43f9c63d8
16 changed files with 419 additions and 0 deletions

15
main.go Normal file
View file

@ -0,0 +1,15 @@
package main
import (
"fmt"
"os"
"github.com/pobri19/sqlboiler/cmds"
)
func main() {
if err := cmds.SQLBoiler.Execute(); err != nil {
fmt.Println(err)
os.Exit(-1)
}
}