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:
parent
f72d646e66
commit
b43f9c63d8
16 changed files with 419 additions and 0 deletions
15
main.go
Normal file
15
main.go
Normal 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)
|
||||
}
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue