```Error: Main method not found in class ServerKt,...
# ktor
f
Copy code
Error: Main method not found in class ServerKt, please define the main method as:
   public static void main(String[] args)
b
You can’t use an extension function as a JVM main function because it compiles down to
ServerKt::main(Application $receiver)
which doesn’t match the required
main(String[] args)
signature