@@ -15,70 +15,86 @@ type issueService struct {
1515}
1616
1717func (s * issueService ) Search (context.Context , scm.SearchOptions ) ([]* scm.SearchIssue , * scm.Response , error ) {
18- // TODO implemment
18+ // TODO implement
1919 return nil , nil , nil
2020}
2121
2222func (s * issueService ) AssignIssue (ctx context.Context , repo string , number int , logins []string ) (* scm.Response , error ) {
23- panic ("implement me" )
23+ // TODO implement
24+ return nil , nil
2425}
2526
2627func (s * issueService ) UnassignIssue (ctx context.Context , repo string , number int , logins []string ) (* scm.Response , error ) {
27- panic ("implement me" )
28+ // TODO implement
29+ return nil , nil
2830}
2931
3032func (s * issueService ) ListEvents (context.Context , string , int , scm.ListOptions ) ([]* scm.ListedIssueEvent , * scm.Response , error ) {
31- panic ("implement me" )
33+ // TODO implement
34+ return nil , nil , nil
3235}
3336
3437func (s * issueService ) ListLabels (context.Context , string , int , scm.ListOptions ) ([]* scm.Label , * scm.Response , error ) {
35- panic ("implement me" )
38+ // TODO implement
39+ return nil , nil , nil
3640}
3741
3842func (s * issueService ) AddLabel (ctx context.Context , repo string , number int , label string ) (* scm.Response , error ) {
39- return nil , scm .ErrNotSupported
43+ // TODO implement
44+ return nil , nil
4045}
4146
4247func (s * issueService ) DeleteLabel (ctx context.Context , repo string , number int , label string ) (* scm.Response , error ) {
43- return nil , scm .ErrNotSupported
48+ // TODO implement
49+ return nil , nil
4450}
4551
4652func (s * issueService ) Find (ctx context.Context , repo string , number int ) (* scm.Issue , * scm.Response , error ) {
47- return nil , nil , scm .ErrNotSupported
53+ // TODO implement
54+ return nil , nil , nil
4855}
4956
5057func (s * issueService ) FindComment (ctx context.Context , repo string , index , id int ) (* scm.Comment , * scm.Response , error ) {
51- return nil , nil , scm .ErrNotSupported
58+ // TODO implement
59+ return nil , nil , nil
5260}
5361
5462func (s * issueService ) List (ctx context.Context , repo string , opts scm.IssueListOptions ) ([]* scm.Issue , * scm.Response , error ) {
55- return nil , nil , scm .ErrNotSupported
63+ // TODO implement
64+ return nil , nil , nil
5665}
5766
5867func (s * issueService ) ListComments (ctx context.Context , repo string , index int , opts scm.ListOptions ) ([]* scm.Comment , * scm.Response , error ) {
59- return nil , nil , scm .ErrNotSupported
68+ // TODO implement
69+ return nil , nil , nil
6070}
6171
6272func (s * issueService ) Create (ctx context.Context , repo string , input * scm.IssueInput ) (* scm.Issue , * scm.Response , error ) {
63- return nil , nil , scm .ErrNotSupported
73+ // TODO implement
74+ return nil , nil , nil
6475}
6576
6677func (s * issueService ) CreateComment (ctx context.Context , repo string , number int , input * scm.CommentInput ) (* scm.Comment , * scm.Response , error ) {
67- return nil , nil , scm .ErrNotSupported
78+ // TODO implement
79+ return nil , nil , nil
6880}
6981
7082func (s * issueService ) DeleteComment (ctx context.Context , repo string , number , id int ) (* scm.Response , error ) {
71- return nil , scm .ErrNotSupported
83+ // TODO implement
84+ return nil , nil
7285}
7386
7487func (s * issueService ) Close (ctx context.Context , repo string , number int ) (* scm.Response , error ) {
75- return nil , scm .ErrNotSupported
88+ // TODO implement
89+ return nil , nil
7690}
7791
7892func (s * issueService ) Lock (ctx context.Context , repo string , number int ) (* scm.Response , error ) {
79- return nil , scm .ErrNotSupported
93+ // TODO implement
94+ return nil , nil
8095}
8196
8297func (s * issueService ) Unlock (ctx context.Context , repo string , number int ) (* scm.Response , error ) {
83- return nil , scm .ErrNotSupported
98+ // TODO implement
99+ return nil , nil
84100}
0 commit comments