This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
open Newtonsoft.Json | |
open Newtonsoft.Json.Converters | |
module Json = | |
// Custom Json serialization / deserialization settings to be applied for the whole backend | |
let serializationSettingsEx = | |
let settings = JsonSerializerSettings() | |
settings.Converters.Add(OptionConverter()) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
[<AutoOpen>] | |
module Giraffe.Query | |
open Aether | |
open Microsoft.AspNetCore.Http | |
module Helpers = | |
let konst v _ = v | |
[<RequireQualifiedAccess>] |