-
Notifications
You must be signed in to change notification settings - Fork 0
YAML
virtualWinter edited this page Aug 31, 2025
·
1 revision
The storage-yml module provides a simple way to interact with YAML files.
// Initialize the YAML handler
Yml yml = new Yml("config.yml");
yml.load();
// Get the data
Map<String, Object> data = yml.getData();
// ... perform operations with the data
// Save the data
yml.save();© 2025 CatMC Network