
com.freya02.botcommands.api.commands.prefixed.annotations.Hidden Maven / Gradle / Ivy
package com.freya02.botcommands.api.commands.prefixed.annotations;
import java.lang.annotation.ElementType;
import java.lang.annotation.Retention;
import java.lang.annotation.RetentionPolicy;
import java.lang.annotation.Target;
/** Use this annotation if you want the command to be hidden from everyone but the owners, the 'help' command will not display it
*/
@Retention(RetentionPolicy.RUNTIME)
@Target({ElementType.TYPE, ElementType.METHOD})
public @interface Hidden {}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy