go 1.19 interface{} -> any

This commit is contained in:
Cody Lee
2022-12-03 16:32:12 -06:00
parent b05453b643
commit 247cc868b3
36 changed files with 120 additions and 120 deletions

View File

@@ -23,7 +23,7 @@ type Input interface {
// InputPlugin describes an input plugin's consumable interface.
type InputPlugin struct {
Name string
Config interface{} // Each config is passed into an unmarshaller later.
Config any // Each config is passed into an unmarshaller later.
Input
}