Files
grafana/pkg/models/transaction.go
T
2018-06-15 12:46:20 +02:00

8 lines
150 B
Go

package models
import "context"
type TransactionManager interface {
InTransaction(ctx context.Context, fn func(ctx context.Context) error) error
}