Skip to content

Commit

Permalink
package comment
Browse files Browse the repository at this point in the history
  • Loading branch information
mmetc committed Sep 20, 2024
1 parent 46d7ae9 commit d19761b
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions pkg/cwversion/component/component.go
Original file line number Diff line number Diff line change
@@ -1,8 +1,12 @@
package component

// a map of all the known components, and whether they are built-in or not.
// This is populated as soon as possible by the respective init() functions
// Package component provides functionality for managing the registration of
// optional, compile-time components in the system. This is meant as a space
// saving measure, separate from feature flags (package pkg/fflag) which are
// only enabled/disabled at runtime.

// Built is a map of all the known components, and whether they are built-in or not.
// This is populated as soon as possible by the respective init() functions
var Built = map[string]bool {
"datasource_appsec": false,
"datasource_cloudwatch": false,
Expand Down

0 comments on commit d19761b

Please sign in to comment.