Skip to content
virtualWinter edited this page Aug 31, 2025 · 1 revision

YAML

The storage-yml module provides a simple way to interact with YAML files.

Usage

// 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();

Clone this wiki locally