File tree Expand file tree Collapse file tree 3 files changed +0
-3
lines changed Expand file tree Collapse file tree 3 files changed +0
-3
lines changed Original file line number Diff line number Diff line change @@ -2,7 +2,6 @@ package service
2
2
3
3
import "github.com/cocoide/commitify/internal/entity"
4
4
5
- //go:generate mockgen -source=commit_message.go -destination=../../mock/commit_message.go
6
5
type CommitMessageService interface {
7
6
GenerateCommitMessageList (code string , config entity.Config ) ([]string , error )
8
7
}
Original file line number Diff line number Diff line change @@ -7,7 +7,6 @@ type GetRepoDetailsResponse struct {
7
7
Repo string
8
8
}
9
9
10
- //go:generate mockgen -source=github.go -destination=../../mock/github.go
11
10
type GithubService interface {
12
11
GetStagingCodeDiff () (string , error )
13
12
GetCurrentRepoDetails () (* GetRepoDetailsResponse , error )
Original file line number Diff line number Diff line change 1
1
package service
2
2
3
- //go:generate mockgen -source=nlp.go -destination=../../mock/nlp.go
4
3
type NLPService interface {
5
4
GetAnswerFromPrompt (prompt string ) (string , error )
6
5
}
You can’t perform that action at this time.
0 commit comments