SimpleCloudNotifier/server/db/context.go

16 lines
262 B
Go
Raw Normal View History

2022-11-18 21:25:40 +01:00
package db
import (
"gogs.mikescher.com/BlackForestBytes/goext/sq"
2022-11-18 21:25:40 +01:00
"time"
)
type TxContext interface {
Deadline() (deadline time.Time, ok bool)
Done() <-chan struct{}
Err() error
Value(key any) any
GetOrCreateTransaction(db *Database) (sq.Tx, error)
2022-11-18 21:25:40 +01:00
}