1 2 3 4 5 6 7 8 9 10 11module Duets.Data.ResourceLoader open Duets.Common /// Loads the content of a given file key. let internal load key = Files.dataFile key |> Files.readAll |> Option.defaultValue "" |> Serializer.deserialize
1 2 3 4 5 6 7 8 9 10 11
module Duets.Data.ResourceLoader open Duets.Common /// Loads the content of a given file key. let internal load key = Files.dataFile key |> Files.readAll |> Option.defaultValue "" |> Serializer.deserialize