mirror of
https://github.com/denoland/deno.git
synced 2024-12-12 02:27:46 -05:00
8 lines
133 B
TypeScript
8 lines
133 B
TypeScript
|
import http from "@std/http";
|
||
|
|
||
|
export function foobar(): { fileServer(): void } {
|
||
|
return {
|
||
|
fileServer: http.fileServer,
|
||
|
};
|
||
|
}
|