finclip-app-manager/domain/repository/red_dot.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
}