File size: 290 Bytes
5a22efd | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 | package sequence
import (
"context"
"github.com/alpacahq/alpacadecimal"
"github.com/openmeterio/openmeter/pkg/framework/entutils"
)
type Adapter interface {
entutils.TxCreator
NextSequenceNumber(ctx context.Context, input NextSequenceNumberInput) (alpacadecimal.Decimal, error)
}
|