dune: add mte library; + wip key jsont

This commit is contained in:
Swrup 2025-10-03 21:24:02 +02:00
parent d5eaf6d92f
commit a04e179c08
5 changed files with 47 additions and 34 deletions

View file

@ -21,4 +21,6 @@ let decode s =
| c -> c)
s
in
Base32.decode ~alphabet ~off:0 ~len:(String.length s) s
match Base32.decode ~alphabet ~off:0 ~len:(String.length s) s with
| Error (`Msg e) -> Error e
| Ok v -> Ok v