Showcase

This page is still under construction, stay tuned for updates!

import Vapor

let app = try await Application.make(.detect())

app.get("showcase") { req in
    "Coming soon..."
}

try await app.execute()