aboutsummaryrefslogtreecommitdiff
path: root/src/http/method.zig
diff options
context:
space:
mode:
Diffstat (limited to 'src/http/method.zig')
-rw-r--r--src/http/method.zig11
1 files changed, 10 insertions, 1 deletions
diff --git a/src/http/method.zig b/src/http/method.zig
index f306e522e..8c3e30c7f 100644
--- a/src/http/method.zig
+++ b/src/http/method.zig
@@ -1,4 +1,13 @@
-usingnamespace @import("../global.zig");
+const _global = @import("../global.zig");
+const string = _global.string;
+const Output = _global.Output;
+const Global = _global.Global;
+const Environment = _global.Environment;
+const strings = _global.strings;
+const MutableString = _global.MutableString;
+const stringZ = _global.stringZ;
+const default_allocator = _global.default_allocator;
+const C = _global.C;
pub const Method = enum {
GET,