Initial commit

This commit is contained in:
Hugo Mårdbrink 2025-11-30 15:44:22 +01:00
commit a6272848f9
379 changed files with 74829 additions and 0 deletions

View file

@ -0,0 +1,5 @@
-record(decode_error, {
expected :: binary(),
found :: binary(),
path :: list(binary())
}).

View file

@ -0,0 +1,4 @@
-record(decoder, {
function :: fun((gleam@dynamic:dynamic_()) -> {any(),
list(gleam@dynamic@decode:decode_error())})
}).

View file

@ -0,0 +1 @@
-record(set, {dict :: gleam@dict:dict(any(), list(nil))}).

View file

@ -0,0 +1,9 @@
-record(uri, {
scheme :: gleam@option:option(binary()),
userinfo :: gleam@option:option(binary()),
host :: gleam@option:option(binary()),
port :: gleam@option:option(integer()),
path :: binary(),
'query' :: gleam@option:option(binary()),
fragment :: gleam@option:option(binary())
}).