sqlboiler/main.go
Patrick O'brien b43f9c63d8 Struct generation complete, pipes to stdout
* Database driver config & flag complete
* Table flag complete, will use all tables if non specified
2016-02-23 18:27:32 +10:00

15 lines
179 B
Go

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)
}
}