mirror of
https://github.com/grafana/grafana.git
synced 2024-11-29 12:14:08 -06:00
8 lines
174 B
Go
8 lines
174 B
Go
|
package store
|
||
|
|
||
|
import "context"
|
||
|
|
||
|
func (st *DBstore) InTransaction(ctx context.Context, f func(ctx context.Context) error) error {
|
||
|
return st.SQLStore.InTransaction(ctx, f)
|
||
|
}
|