9 lines
181 B
Go
9 lines
181 B
Go
|
package repository
|
||
|
|
||
|
import "context"
|
||
|
|
||
|
type IRedDotRepo interface {
|
||
|
ReadTrialQr(ctx context.Context, readDotType string, id string, userId string) error
|
||
|
NotFound(err error) bool
|
||
|
}
|