so in ktor you have `embeddedServer(Netty, 8080)`...
# server
r
so in ktor you have
embeddedServer(Netty, 8080)
or something where you can "push" your ktor project to
localhost:8080
s
it’s probably also worth mentioning that there’s no “pushing” happening with the ktor example. calling
embeddedServer(...)
launches a server and binds to localhost:port so it can host from there. no “push” involved
r
yeah thanks for the info