Sesame-Server/Sources/App/API Extensions/SesameRoute+Path.swift
2023-12-08 12:39:10 +01:00

10 lines
143 B
Swift

import Foundation
import RoutingKit
extension SesameRoute {
var path: PathComponent {
.init(stringLiteral: rawValue)
}
}