For now? I'm experimenting on an old concept.
1# webapi
2
3[](https://hex.pm/packages/webapi)
4[](https://hexdocs.pm/webapi/)
5
6```sh
7gleam add webapi@1
8```
9
10```gleam
11import webapi
12
13pub fn main() -> Nil {
14 // TODO: An example of the project in use
15}
16```
17
18Further documentation can be found at <https://hexdocs.pm/webapi>.
19
20## Development
21
22```sh
23gleam run # Run the project
24gleam test # Run the tests
25```