25'ten fazla konu seçemezsiniz
Konular bir harf veya rakamla başlamalı, kısa çizgiler ('-') içerebilir ve en fazla 35 karakter uzunluğunda olabilir.
|
- //
- // File.swift
- //
- //
- // Created by Michiel Carman on 4/13/24.
- //
-
-
- import Fluent
- import Vapor
-
- struct cntrlJWT: RouteCollection{
- func boot(routes: Vapor.RoutesBuilder) throws {
- let rts = routes.grouped("jwt")
- rts.get{req in
- try req.jwt.sign(mdlJWT(result: "test"), kid: .private)
- }
- }
- }
|