7 lines
73 B
Go
7 lines
73 B
Go
package gorm
|
|
|
|
type sqlTx interface {
|
|
Commit() error
|
|
Rollback() error
|
|
}
|