mirror of
https://github.com/hashicorp/vault.git
synced 2025-09-03 04:51:12 +02:00
* CE changes to support exclusion in audit * Add an external test for audit exclusion --------- Co-authored-by: Kuba Wieczorek <kuba.wieczorek@hashicorp.com>
17 lines
542 B
Go
17 lines
542 B
Go
// Copyright (c) HashiCorp, Inc.
|
|
// SPDX-License-Identifier: BUSL-1.1
|
|
|
|
//go:build !enterprise
|
|
|
|
package audit
|
|
|
|
// formatterConfigEnt provides extensions to a formatterConfig which behave differently
|
|
// for Enterprise and community edition.
|
|
// NOTE: Use newFormatterConfigEnt to initialize the formatterConfigEnt struct.
|
|
type formatterConfigEnt struct{}
|
|
|
|
// newFormatterConfigEnt should be used to create formatterConfigEnt.
|
|
func newFormatterConfigEnt(config map[string]string) (formatterConfigEnt, error) {
|
|
return formatterConfigEnt{}, nil
|
|
}
|