feat: Add GPG key to team members

This commit is contained in:
oSumAtrIX
2024-06-06 23:20:21 +02:00
parent 6b3dbab90b
commit 71f58cf352
12 changed files with 261 additions and 190 deletions

View File

@@ -0,0 +1,7 @@
package app.revanced.api.configuration
import io.ktor.http.*
import io.ktor.server.application.*
import io.ktor.server.response.*
suspend fun ApplicationCall.respondOrNotFound(value: Any?) = respond(value ?: HttpStatusCode.NotFound)