b43f9c63d8
* Database driver config & flag complete * Table flag complete, will use all tables if non specified
15 lines
179 B
Go
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)
|
|
}
|
|
}
|