https://github.com/lucko/configurate-toml
https://github.com/lucko/configurate-toml
Last synced: 10 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/lucko/configurate-toml
- Owner: lucko
- License: mit
- Created: 2020-08-01T09:50:34.000Z (almost 6 years ago)
- Default Branch: master
- Last Pushed: 2022-04-23T17:30:10.000Z (over 4 years ago)
- Last Synced: 2025-04-08T17:09:26.432Z (over 1 year ago)
- Language: Java
- Size: 17.6 KB
- Stars: 5
- Watchers: 2
- Forks: 6
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE.txt
Awesome Lists containing this project
README
# configurate-toml
A [Configurate](https://github.com/SpongePowered/Configurate/) loader for the [TOML](https://github.com/toml-lang/toml) file format.
### Usage
configurate-toml is published to Maven Central with [group id: `me.lucko.configurate`, artifact id: `configurate-toml`](https://search.maven.org/artifact/me.lucko.configurate/configurate-toml).
```java
TOMLConfigurationLoader loader = TOMLConfigurationLoader.builder()
.path(Paths.get("config.toml"))
.build();
ConfigurationNode node = loader.load();
```