finclip-app-manager/domain/repository/red_dot.go

9 lines
181 B
Go
Raw Permalink Normal View History

2023-10-31 14:07:26 +08:00
package repository
import "context"
type IRedDotRepo interface {
ReadTrialQr(ctx context.Context, readDotType string, id string, userId string) error
NotFound(err error) bool
}