Dashboard sipadu mbip
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

12345678910111213141516171819
  1. let decode = json =>
  2. Json.Decode.{
  3. query: json |> field("query", string),
  4. cacheKey: json |> field("cacheKey", string),
  5. desc: json |> field("desc", string),
  6. lambda: json |> field("lambda", string),
  7. };
  8. Some.Bucket.Of.(
  9. let value = stuff();
  10. );
  11. let value = Some.Bucket.Of.stuff();
  12. module type RewiredModule = {
  13. type t = {
  14. name: string
  15. };
  16. };