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