All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.freya02.botcommands.api.commands.annotations.RequireOwner Maven / Gradle / Ivy

package com.freya02.botcommands.api.commands.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 usable only by the bot owners
 * 

* This is only usable on text commands */ @Retention(RetentionPolicy.RUNTIME) @Target({ElementType.TYPE, ElementType.METHOD}) public @interface RequireOwner {}





© 2015 - 2025 Weber Informatics LLC | Privacy Policy