mirror of
https://github.com/zitadel/zitadel.git
synced 2024-12-19 14:27:32 +00:00
13 lines
251 B
Go
13 lines
251 B
Go
|
package mock
|
||
|
|
||
|
import (
|
||
|
"github.com/golang/mock/gomock"
|
||
|
|
||
|
"github.com/caos/zitadel/internal/auth_request/repository"
|
||
|
)
|
||
|
|
||
|
func NewMockAuthRequestRepository(ctrl *gomock.Controller) repository.Repository {
|
||
|
repo := NewMockRepository(ctrl)
|
||
|
return repo
|
||
|
}
|