mirror of
https://github.com/crowdsecurity/crowdsec.git
synced 2025-05-11 12:25:53 +02:00
12 lines
317 B
Go
12 lines
317 B
Go
//go:build !no_datasource_wineventlog
|
|
|
|
package acquisition
|
|
|
|
import (
|
|
wineventlogacquisition "github.com/crowdsecurity/crowdsec/pkg/acquisition/modules/wineventlog"
|
|
)
|
|
|
|
//nolint:gochecknoinits
|
|
func init() {
|
|
registerDataSource("wineventlog", func() DataSource { return &wineventlogacquisition.WinEventLogSource{} })
|
|
}
|