mirror of
https://github.com/featurebasedb/featurebase.git
synced 2026-08-28 02:44:59 +00:00
13 lines
302 B
Go
13 lines
302 B
Go
// Copyright 2022 Molecula Corp. (DBA FeatureBase).
|
|
// SPDX-License-Identifier: Apache-2.0
|
|
package pilosa
|
|
|
|
import (
|
|
"github.com/featurebasedb/featurebase/v3/testhook"
|
|
)
|
|
|
|
var NewAuditor func() testhook.Auditor = NewNopAuditor
|
|
|
|
func NewNopAuditor() testhook.Auditor {
|
|
return testhook.NewNopAuditor()
|
|
}
|