10 lines
200 B
Go
10 lines
200 B
Go
package gorm
|
|
|
|
// Association Mode contains some helper methods to handle relationship things easily.
|
|
type Association struct {
|
|
}
|
|
|
|
func (db *DB) Association(column string) *Association {
|
|
return nil
|
|
}
|