blob: 5ee21936043e4372c5ee5c76b4739992dff55fa7 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
// Copyright 2018-2023 the Deno authors. All rights reserved. MIT license.
const core = globalThis.Deno.core;
const ops = core.ops;
import { HttpConn } from "ext:deno_http/01_http.js";
function serveHttp(conn) {
const rid = ops.op_http_start(conn.rid);
return new HttpConn(rid, conn.remoteAddr, conn.localAddr);
}
export { serveHttp };
|