forked from woggioni/rbcs
7 lines
172 B
Kotlin
7 lines
172 B
Kotlin
package net.woggioni.gbcs
|
|
|
|
import io.netty.handler.codec.http.HttpRequest
|
|
|
|
fun interface Authorizer {
|
|
fun authorize(roles : Set<Role>, request: HttpRequest) : Boolean
|
|
} |