File tree 6 files changed +7
-213
lines changed
6 files changed +7
-213
lines changed Original file line number Diff line number Diff line change 1
1
// Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
2
2
// SPDX-License-Identifier: Apache-2.0
3
- package follow_v2
3
+ package follow
4
4
5
5
import (
6
6
"encoding/json"
Original file line number Diff line number Diff line change 1
1
// Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
2
2
// SPDX-License-Identifier: Apache-2.0
3
- package follow_v1
3
+ package follow
4
4
5
5
import (
6
6
"encoding/json"
Load Diff This file was deleted.
Load Diff This file was deleted.
Original file line number Diff line number Diff line change @@ -20,8 +20,7 @@ import (
20
20
"github.com/twitchdev/twitch-cli/internal/events/types/cheer"
21
21
"github.com/twitchdev/twitch-cli/internal/events/types/drop"
22
22
"github.com/twitchdev/twitch-cli/internal/events/types/extension_transaction"
23
- "github.com/twitchdev/twitch-cli/internal/events/types/follow_v1"
24
- "github.com/twitchdev/twitch-cli/internal/events/types/follow_v2"
23
+ "github.com/twitchdev/twitch-cli/internal/events/types/follow"
25
24
"github.com/twitchdev/twitch-cli/internal/events/types/gift"
26
25
"github.com/twitchdev/twitch-cli/internal/events/types/goal"
27
26
"github.com/twitchdev/twitch-cli/internal/events/types/hype_train"
@@ -51,8 +50,7 @@ func AllEvents() []events.MockEvent {
51
50
cheer.Event {},
52
51
drop.Event {},
53
52
extension_transaction.Event {},
54
- follow_v1.Event {},
55
- follow_v2.Event {},
53
+ follow.Event {},
56
54
gift.Event {},
57
55
goal.Event {},
58
56
hype_train.Event {},
Original file line number Diff line number Diff line change @@ -110,5 +110,8 @@ func Gone() map[string][]string {
110
110
"/soundtrack/playlists" : {
111
111
"GET" ,
112
112
},
113
+ "/users/follows" : {
114
+ "GET" ,
115
+ },
113
116
}
114
117
}
You can’t perform that action at this time.
0 commit comments