com.github.bjoernpetersen.jmusicbot.ApiInitializer 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 java.io.Closeable;
import javax.annotation.Nonnull;
@FunctionalInterface
public interface ApiInitializer {
Closeable initialize(@Nonnull MusicBot bot, int port) throws InterruptedException, InitializationException;
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy