1
mirror of https://github.com/CarmJos/EasyConfiguration.git synced 2026-06-04 10:38:19 +08:00

docs(sample): Add sample codes. 🥚

This commit is contained in:
2024-01-03 23:28:36 +08:00
parent e42de0eee7
commit 48050a52a2
2 changed files with 5 additions and 6 deletions
+3 -3
View File
@@ -58,12 +58,13 @@ public class Sample {
ConfiguredValue<Boolean> ENABLED = ConfiguredValue.of(true);
interface INFO extends Configuration {
@HeaderComment("Configure your name!") // Header comment
ConfiguredValue<String> NAME = ConfiguredValue.of("Joker");
ConfiguredValue<Integer> AGE = ConfiguredValue.of(24);
}
}
public static void main(String[] args) {
@@ -83,8 +84,7 @@ public class Sample {
```yaml
# Configurations for sample
# Enabled?
enabled: true
enabled: true # Enabled?
info:
# Configure your name!