For now? I'm experimenting on an old concept.
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

at development 25 lines 470 B view raw view rendered
1# webapi 2 3[![Package Version](https://img.shields.io/hexpm/v/webapi)](https://hex.pm/packages/webapi) 4[![Hex Docs](https://img.shields.io/badge/hex-docs-ffaff3)](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```