sqlboiler/main.go
Patrick O'brien d945bc714d Fixed readme
2016-02-24 20:56:15 +10:00

19 lines
342 B
Go

/*
SQLBoiler is a tool to generate Go boilerplate code for database interactions.
So far this includes struct definitions and database statement helper functions.
*/
package main
import (
"os"
"github.com/pobri19/sqlboiler/cmds"
)
func main() {
// Execute SQLBoiler
if err := cmds.SQLBoiler.Execute(); err != nil {
os.Exit(-1)
}
}