featurebase/etcd/enterprise_cluster.go
2022-09-02 13:23:39 -07:00

12 lines
297 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 an enterprise version of
// FB that does cluster, in contrast to the PLG version.
func AllowCluster() bool {
return true
}