If I use the following approach, how do I get Grad...
# ktor
t
If I use the following approach, how do I get Gradle to run the project?
Copy code
fun Application.main() {
    install(DefaultHeaders)
    install(Routing) {
        get("/") {
            call.respondText("Hello, World!")
        }
    }
}
g
thisen: You can add main function and run application