This repository has been archived on 2026-02-12. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
swift-duct-calc/Sources/ManualDCore/Routes/SiteRoute.swift

15 lines
247 B
Swift

import CasePathsCore
import Foundation
@preconcurrency import URLRouting
public enum SiteRoute: Equatable, Sendable {
case api(Self.Api)
public static let router = OneOf {
Route(.case(Self.api)) {
SiteRoute.Api.router
}
}
}