Make UrlLauncher a fun interface

Signed-off-by: Harsh Shandilya <me@msfjarvis.dev>
This commit is contained in:
Harsh Shandilya 2020-10-30 14:47:47 +05:30
parent b195c0d203
commit 779ad2f8b9
No known key found for this signature in database
GPG key ID: 366D7BBAD1031E80

View file

@ -1,5 +1,5 @@
package dev.msfjarvis.lobsters.urllauncher
interface UrlLauncher {
fun interface UrlLauncher {
fun launch(url: String)
}