Files
SimpleNotes/api/src/factories/SimpleJwtFactory.kt
T
2020-07-01 00:12:56 +02:00

7 lines
183 B
Kotlin

package be.vandewalleh.factories
import be.vandewalleh.Jwt
import be.vandewalleh.auth.SimpleJWT
fun simpleJwtFactory(jwt: Jwt) = SimpleJWT(jwt.secret.value, jwt.validity, jwt.unit)