mirror of
https://github.com/rwinkhart/go-winio.git
synced 2026-09-03 07:37:39 -04:00
Some new upcoming changes require us to use Go 1.23. However, if we switch to Go 1.23 some new linter errors are showing up. This commit fixes most of the errors and adds an exclusion for integer overflow errors. Signed-off-by: Amit <ambarve@microsoft.com>
9 lines
228 B
Go
9 lines
228 B
Go
//go:build windows && arm
|
|
|
|
package etw
|
|
|
|
// NewProviderWithID returns a nil provider on unsupported platforms.
|
|
func NewProviderWithOptions(name string, options ...ProviderOpt) (provider *Provider, err error) {
|
|
return nil, nil
|
|
}
|