net.bjoernpetersen.musicbot.spi.util.BrowserOpener.kt 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 net.bjoernpetersen.musicbot.spi.util
import java.net.URL
/**
* An object capable of opening a URL in the user's preferred web browser.
*/
interface BrowserOpener {
/**
* Open the specified URL in the user's default web browser.
*/
fun openDocument(url: URL)
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy