vibe-core/examples/echo-server/source/app.d
2017-09-21 14:08:52 +02:00

10 lines
188 B
D

import vibe.core.core : runApplication;
import vibe.core.net : listenTCP;
import vibe.core.stream : pipe;
void main()
{
listenTCP(7000, (conn) => pipe(conn, conn));
runApplication();
}