README.md
# fiction_toml
[](https://hex.pm/packages/fiction_toml)
[](https://hexdocs.pm/fiction_toml/)
A provider for [fiction](https://hex.pm/packages/fiction) that reads and parses TOML files.
```sh
gleam add fiction_toml@1
```
```gleam
import fiction/providers/toml
import fiction
pub fn main() -> Nil {
fiction.new() |> fiction.join(toml.file("./priv/some_file.toml")) |> fiction.extract(..)
}
```
Further documentation can be found at <https://hexdocs.pm/fiction_toml>.
## Development
```sh
gleam test # Run the tests
```