Evangelists

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

import Vapor

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

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

try await app.execute()