We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9e4acca commit c171320Copy full SHA for c171320
1 file changed
observability/reporter.go
@@ -14,6 +14,7 @@ type Reporter interface {
14
Agent() agentsobs.Reporter
15
Gateway() gatewayobs.Reporter
16
Telephony() telephonyobs.Reporter
17
+ Connector() any // any is a placeholder for the connector type
18
Close()
19
}
20
@@ -39,4 +40,9 @@ func (reporter) Telephony() telephonyobs.Reporter {
39
40
return telephonyobs.NewNoopReporter()
41
42
-func (reporter) Close() {}
43
+func (reporter) Connector() any {
44
+ return nil
45
+}
46
+
47
+func (reporter) Close() {
48
0 commit comments