com.github.bjoernpetersen.jmusicbot.IdPlugin Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of musicbot Show documentation
Show all versions of musicbot Show documentation
Core library of MusicBot, which plays music from various providers.
package com.github.bjoernpetersen.jmusicbot;
import javax.annotation.Nonnull;
public interface IdPlugin extends Plugin {
/**
* A short, unique ID for this plugin. No spaces. Only needs to be unique for the same kind of
* plugin.
*
* @return an ID
*/
@Nonnull
String getId();
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy