Sesame-Server/Sources/App/API Extensions/SesameRoute+Path.swift

10 lines
143 B
Swift
Raw Normal View History

2023-12-08 12:39:10 +01:00
import Foundation
import RoutingKit
extension SesameRoute {
var path: PathComponent {
.init(stringLiteral: rawValue)
}
}