Skip to content

Latest commit

 

History

History
26 lines (17 loc) · 656 Bytes

README.md

File metadata and controls

26 lines (17 loc) · 656 Bytes

Courgette

NuGet version (Courgette)

Courgette is a small library that helps to manage configuration models in the F# scripts.


Stuffed courgette — фаршированные кабачки.

Basic Usage Example

#r @"nuget: Courgette"

[<Struct>]
type Config =
  { ConnectionString: string
    ProjectionServiceBaseUri: string }

type Environment =
  | Development
  | Production

let config = Courgette.Struct.init<Config> Environment.Development