Files
open-im-server/pkg/common/db/tx/tx.go
T

12 lines
196 B
Go
Raw Normal View History

2023-06-30 09:45:02 +08:00
package tx
import "context"
type Tx interface {
Transaction(fn func(tx any) error) error
}
type CtxTx interface {
Transaction(ctx context.Context, fn func(ctx context.Context) error) error
}