You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
package main |
|
|
|
import "git.diulo.com/mogfee/kit/tools/model/sql/gen" |
|
|
|
func main() { |
|
filenmae := "/Users/mogfee/web/sendmail_server_new/sendmail.sch.sql" |
|
err := gen.NewGenerator().StartFromDDL(filenmae, false, true, "sendmail") |
|
if err != nil { |
|
panic(err) |
|
} |
|
}
|
|
|