9 lines
207 B
Go
9 lines
207 B
Go
|
package repository
|
||
|
|
||
|
import "context"
|
||
|
|
||
|
type ILinkAuditRepo interface {
|
||
|
Count(ctx context.Context, appID string, groupId string, bindingID string, stLinkAudit string) (int, error)
|
||
|
NotFound(err error) bool
|
||
|
}
|