예제 #1
0
// Add the sqlite3 dialect to the dialect registry
func init() {
	aspect.RegisterDialect("sqlite3", &Sqlite3{})
}
예제 #2
0
// Add the postgres dialect to the dialect registry
func init() {
	aspect.RegisterDialect("postgres", &PostGres{})
}
예제 #3
0
파일: mysql.go 프로젝트: shyrobbiani/aspect
// Add the mysql dialect to the dialect registry
func init() {
	aspect.RegisterDialect("mysql", &MySQL{})
}