mirror of
https://github.com/open-policy-agent/opa.git
synced 2026-08-12 19:32:48 -06:00
e03ac2f200
- Bump golangci-lint -> 2.6.2 - Fix all `deprecatedComment` "notices should be in a dedicated paragraph, separated from the rest" reports - Enable `appendCombine` and fix all "appendCombine: can combine chain of X appends into one" notices - Enable `preferFprint` and fix the few reported issues - Fix various issues reported only once or twice, like `zeroByteRepeat` Signed-off-by: Anders Eknert <anders.eknert@apple.com>
16 lines
405 B
Go
16 lines
405 B
Go
// Copyright 2022 The OPA Authors. All rights reserved.
|
|
// Use of this source code is governed by an Apache2
|
|
// license that can be found in the LICENSE file.
|
|
|
|
//go:build !bench_disk
|
|
// +build !bench_disk
|
|
|
|
// nolint: unused // build tags confuse these linters
|
|
package authz
|
|
|
|
import "github.com/open-policy-agent/opa/v1/storage/disk"
|
|
|
|
func diskStorage() (*disk.Options, func() error) {
|
|
return nil, nil
|
|
}
|