feat: Add local ReVanced API server

This commit is contained in:
oSumAtrIX 2024-06-09 02:03:05 +02:00
parent 17ecf58e55
commit cd5d57f8f8
No known key found for this signature in database
GPG Key ID: A9B3094ACDB604B4

View File

@ -44,6 +44,11 @@ internal fun Application.configureOpenAPI() {
url = URI("https://api.revanced.app"),
description = "ReVanced API server.",
)
servers += Server(
url = URI("http://localhost:8888"),
description = "Local ReVanced API server.",
)
}
}