diff --git a/eco-api/src/main/java/com/willfp/eco/core/Eco.java b/eco-api/src/main/java/com/willfp/eco/core/Eco.java index 3365826f..fb71876e 100644 --- a/eco-api/src/main/java/com/willfp/eco/core/Eco.java +++ b/eco-api/src/main/java/com/willfp/eco/core/Eco.java @@ -10,6 +10,13 @@ import org.jetbrains.annotations.NotNull; public class Eco { /** * Instance of eco handler. + *
+ * The handler is, in essence, a way to interface between the eco-api + * frontend module, and the eco-backend implementations. + *
+ * There shouldn't really be any reason to ever use the handler + * in your own plugins, but if you want to then you can - it's + * just a part of the API like any other. */ @Getter private Handler handler;