mirror of
https://github.com/featurebasedb/featurebase.git
synced 2026-08-28 10:54:59 +00:00
12 lines
309 B
Go
12 lines
309 B
Go
//go:build plg
|
|
// +build plg
|
|
|
|
// Copyright 2022 Molecula Corp. (DBA FeatureBase).
|
|
// SPDX-License-Identifier: Apache-2.0
|
|
package etcd
|
|
|
|
// allows us to conditionally build a version of FB that does not
|
|
// cluster, to make a demo available for our Product Led Growth.
|
|
func AllowCluster() bool {
|
|
return false
|
|
}
|