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

10 lines
188 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()
{
listenTCP(7000, (conn) => pipe(conn, conn));
runApplication();
}