pillars.flags.FlagsConfig.scala Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of pillars-flags_3 Show documentation
Show all versions of pillars-flags_3 Show documentation
pillars-flag is a scala 3 library providing feature flag services for writing backend applications
The newest version!
// Copyright (c) 2024-2024 by Raphaël Lemaitre and Contributors
// This software is licensed under the Eclipse Public License v2.0 (EPL-2.0).
// For more information see LICENSE or https://opensource.org/license/epl-2-0
package pillars.flags
import io.circe.Codec
final case class FlagsConfig(
enabled: Boolean = true,
flags: List[FeatureFlag] = List.empty
) extends pillars.Config derives Codec.AsObject
© 2015 - 2025 Weber Informatics LLC | Privacy Policy