diff options
author | 2021-12-18 20:23:10 -0800 | |
---|---|---|
committer | 2021-12-18 20:23:10 -0800 | |
commit | 430fe09d6dcf0f6bf10460c95d5ac47e51189fc3 (patch) | |
tree | fa1c2abedef74b2376158e7fdeb23240d94137fc /src/cli/create_command.zig | |
parent | 5455c71f93360a66af59b70ec569050ba7a28442 (diff) | |
download | bun-430fe09d6dcf0f6bf10460c95d5ac47e51189fc3.tar.gz bun-430fe09d6dcf0f6bf10460c95d5ac47e51189fc3.tar.zst bun-430fe09d6dcf0f6bf10460c95d5ac47e51189fc3.zip |
Delete synchronous HTTP client!
Diffstat (limited to 'src/cli/create_command.zig')
-rw-r--r-- | src/cli/create_command.zig | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/src/cli/create_command.zig b/src/cli/create_command.zig index 2ac8005db..096fe5ab7 100644 --- a/src/cli/create_command.zig +++ b/src/cli/create_command.zig @@ -245,8 +245,6 @@ const CreateOptions = struct { const BUN_CREATE_DIR = ".bun-create"; var home_dir_buf: [std.fs.MAX_PATH_BYTES]u8 = undefined; pub const CreateCommand = struct { - var client: HTTPClient = undefined; - pub fn exec(ctx: Command.Context, positionals_: []const []const u8) !void { Global.configureAllocator(.{ .long_running = false }); try NetworkThread.init(); |