vibe-core/examples/echo-server/source/app.d

10 lines
190 B
D
Raw Normal View History

2017-09-21 12:08:52 +00:00
import vibe.core.core : runApplication;
import vibe.core.net : listenTCP;
import vibe.core.stream : pipe;
void main()
{
2017-10-30 22:08:08 +00:00
listenTCP(7000, (conn) { pipe(conn, conn); });
2017-09-21 12:08:52 +00:00
runApplication();
}