A modern, batteries included web framework for Swift.
import Alchemy
@main
struct App: Application {
    func boot() {
        get("/hello") { req in
            "Hello, \(req["name"])!"
        }
    }
}For full documentation and to get started, visit alchemyswift.com.
You can report bugs, suggest features, or just say hi on Github discussions and Discord.
👋 Thanks for checking out Alchemy!
