@@ -48,168 +48,168 @@ type Capturer interface {
48
48
49
49
type capturers []Capturer
50
50
51
- func (cs capturers ) captureStart (trs Trails , bookPath , desc string ) {
51
+ func (cs capturers ) captureStart (trs Trails , bookPath , desc string ) { //nostyle:recvtype
52
52
for _ , c := range cs {
53
53
c .CaptureStart (trs , bookPath , desc )
54
54
}
55
55
}
56
56
57
- func (cs capturers ) captureResult (trs Trails , result * RunResult ) {
57
+ func (cs capturers ) captureResult (trs Trails , result * RunResult ) { //nostyle:recvtype
58
58
for _ , c := range cs {
59
59
c .CaptureResult (trs , result )
60
60
}
61
61
}
62
62
63
- func (cs capturers ) captureEnd (trs Trails , bookPath , desc string ) {
63
+ func (cs capturers ) captureEnd (trs Trails , bookPath , desc string ) { //nostyle:recvtype
64
64
for _ , c := range cs {
65
65
c .CaptureEnd (trs , bookPath , desc )
66
66
}
67
67
}
68
68
69
- func (cs capturers ) captureHTTPRequest (name string , req * http.Request ) {
69
+ func (cs capturers ) captureHTTPRequest (name string , req * http.Request ) { //nostyle:recvtype
70
70
for _ , c := range cs {
71
71
c .CaptureHTTPRequest (name , req )
72
72
}
73
73
}
74
74
75
- func (cs capturers ) captureHTTPResponse (name string , res * http.Response ) {
75
+ func (cs capturers ) captureHTTPResponse (name string , res * http.Response ) { //nostyle:recvtype
76
76
for _ , c := range cs {
77
77
c .CaptureHTTPResponse (name , res )
78
78
}
79
79
}
80
80
81
- func (cs capturers ) captureGRPCStart (name string , typ GRPCType , service , method string ) {
81
+ func (cs capturers ) captureGRPCStart (name string , typ GRPCType , service , method string ) { //nostyle:recvtype
82
82
for _ , c := range cs {
83
83
c .CaptureGRPCStart (name , typ , service , method )
84
84
}
85
85
}
86
- func (cs capturers ) captureGRPCRequestHeaders (h metadata.MD ) {
86
+ func (cs capturers ) captureGRPCRequestHeaders (h metadata.MD ) { //nostyle:recvtype
87
87
for _ , c := range cs {
88
88
c .CaptureGRPCRequestHeaders (h )
89
89
}
90
90
}
91
91
92
- func (cs capturers ) captureGRPCRequestMessage (m map [string ]any ) {
92
+ func (cs capturers ) captureGRPCRequestMessage (m map [string ]any ) { //nostyle:recvtype
93
93
for _ , c := range cs {
94
94
c .CaptureGRPCRequestMessage (m )
95
95
}
96
96
}
97
97
98
- func (cs capturers ) captureGRPCResponseStatus (s * status.Status ) {
98
+ func (cs capturers ) captureGRPCResponseStatus (s * status.Status ) { //nostyle:recvtype
99
99
for _ , c := range cs {
100
100
c .CaptureGRPCResponseStatus (s )
101
101
}
102
102
}
103
103
104
- func (cs capturers ) captureGRPCResponseHeaders (h metadata.MD ) {
104
+ func (cs capturers ) captureGRPCResponseHeaders (h metadata.MD ) { //nostyle:recvtype
105
105
for _ , c := range cs {
106
106
c .CaptureGRPCResponseHeaders (h )
107
107
}
108
108
}
109
109
110
- func (cs capturers ) captureGRPCResponseMessage (m map [string ]any ) {
110
+ func (cs capturers ) captureGRPCResponseMessage (m map [string ]any ) { //nostyle:recvtype
111
111
for _ , c := range cs {
112
112
c .CaptureGRPCResponseMessage (m )
113
113
}
114
114
}
115
115
116
- func (cs capturers ) captureGRPCResponseTrailers (t metadata.MD ) {
116
+ func (cs capturers ) captureGRPCResponseTrailers (t metadata.MD ) { //nostyle:recvtype
117
117
for _ , c := range cs {
118
118
c .CaptureGRPCResponseTrailers (t )
119
119
}
120
120
}
121
121
122
- func (cs capturers ) captureGRPCClientClose () {
122
+ func (cs capturers ) captureGRPCClientClose () { //nostyle:recvtype
123
123
for _ , c := range cs {
124
124
c .CaptureGRPCClientClose ()
125
125
}
126
126
}
127
127
128
- func (cs capturers ) captureGRPCEnd (name string , typ GRPCType , service , method string ) {
128
+ func (cs capturers ) captureGRPCEnd (name string , typ GRPCType , service , method string ) { //nostyle:recvtype
129
129
for _ , c := range cs {
130
130
c .CaptureGRPCEnd (name , typ , service , method )
131
131
}
132
132
}
133
133
134
- func (cs capturers ) captureCDPStart (name string ) {
134
+ func (cs capturers ) captureCDPStart (name string ) { //nostyle:recvtype
135
135
for _ , c := range cs {
136
136
c .CaptureCDPStart (name )
137
137
}
138
138
}
139
139
140
- func (cs capturers ) captureCDPAction (a CDPAction ) {
140
+ func (cs capturers ) captureCDPAction (a CDPAction ) { //nostyle:recvtype
141
141
for _ , c := range cs {
142
142
c .CaptureCDPAction (a )
143
143
}
144
144
}
145
145
146
- func (cs capturers ) captureCDPResponse (a CDPAction , res map [string ]any ) {
146
+ func (cs capturers ) captureCDPResponse (a CDPAction , res map [string ]any ) { //nostyle:recvtype
147
147
for _ , c := range cs {
148
148
c .CaptureCDPResponse (a , res )
149
149
}
150
150
}
151
151
152
- func (cs capturers ) captureCDPEnd (name string ) {
152
+ func (cs capturers ) captureCDPEnd (name string ) { //nostyle:recvtype
153
153
for _ , c := range cs {
154
154
c .CaptureCDPEnd (name )
155
155
}
156
156
}
157
157
158
- func (cs capturers ) captureSSHCommand (command string ) {
158
+ func (cs capturers ) captureSSHCommand (command string ) { //nostyle:recvtype
159
159
for _ , c := range cs {
160
160
c .CaptureSSHCommand (command )
161
161
}
162
162
}
163
163
164
- func (cs capturers ) captureSSHStdout (stdout string ) {
164
+ func (cs capturers ) captureSSHStdout (stdout string ) { //nostyle:recvtype
165
165
for _ , c := range cs {
166
166
c .CaptureSSHStdout (stdout )
167
167
}
168
168
}
169
169
170
- func (cs capturers ) captureSSHStderr (stderr string ) {
170
+ func (cs capturers ) captureSSHStderr (stderr string ) { //nostyle:recvtype
171
171
for _ , c := range cs {
172
172
c .CaptureSSHStderr (stderr )
173
173
}
174
174
}
175
175
176
- func (cs capturers ) captureDBStatement (name string , stmt string ) {
176
+ func (cs capturers ) captureDBStatement (name string , stmt string ) { //nostyle:recvtype
177
177
for _ , c := range cs {
178
178
c .CaptureDBStatement (name , stmt )
179
179
}
180
180
}
181
181
182
- func (cs capturers ) captureDBResponse (name string , res * DBResponse ) {
182
+ func (cs capturers ) captureDBResponse (name string , res * DBResponse ) { //nostyle:recvtype
183
183
for _ , c := range cs {
184
184
c .CaptureDBResponse (name , res )
185
185
}
186
186
}
187
187
188
- func (cs capturers ) captureExecCommand (command string ) {
188
+ func (cs capturers ) captureExecCommand (command string ) { //nostyle:recvtype
189
189
for _ , c := range cs {
190
190
c .CaptureExecCommand (command )
191
191
}
192
192
}
193
193
194
- func (cs capturers ) captureExecStdin (stdin string ) {
194
+ func (cs capturers ) captureExecStdin (stdin string ) { //nostyle:recvtype
195
195
for _ , c := range cs {
196
196
c .CaptureExecStdin (stdin )
197
197
}
198
198
}
199
199
200
- func (cs capturers ) captureExecStdout (stdout string ) {
200
+ func (cs capturers ) captureExecStdout (stdout string ) { //nostyle:recvtype
201
201
for _ , c := range cs {
202
202
c .CaptureExecStdout (stdout )
203
203
}
204
204
}
205
205
206
- func (cs capturers ) captureExecStderr (stderr string ) {
206
+ func (cs capturers ) captureExecStderr (stderr string ) { //nostyle:recvtype
207
207
for _ , c := range cs {
208
208
c .CaptureExecStderr (stderr )
209
209
}
210
210
}
211
211
212
- func (cs capturers ) setCurrentTrails (trs Trails ) {
212
+ func (cs capturers ) setCurrentTrails (trs Trails ) { //nostyle:recvtype
213
213
for _ , c := range cs {
214
214
c .SetCurrentTrails (trs )
215
215
}
0 commit comments