12 lines
269 B
Go
12 lines
269 B
Go
package result
|
|
|
|
import (
|
|
"context"
|
|
"github.com/SamuelTariku/FortuneBet-Backend/internal/domain"
|
|
)
|
|
|
|
type Store interface {
|
|
InsertResult(ctx context.Context, result domain.Result) error
|
|
GetResultByEventID(ctx context.Context, eventID string) (domain.Result, error)
|
|
}
|