We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent baaab83 commit fa0aa8cCopy full SHA for fa0aa8c
pkg/github/dependencies.go
@@ -103,6 +103,9 @@ type BaseDeps struct {
103
featureChecker inventory.FeatureFlagChecker
104
}
105
106
+// Compile-time assertion to verify that BaseDeps implements the ToolDependencies interface.
107
+var _ ToolDependencies = (*BaseDeps)(nil)
108
+
109
// NewBaseDeps creates a BaseDeps with the provided clients and configuration.
110
func NewBaseDeps(
111
client *gogithub.Client,
0 commit comments