Clean up logic for choosing when to use filesystem router or public dir

Former-commit-id: 84bb17d9e0dd6e31995afb7b2f49436187fc9f76
This commit is contained in:
Jarred Sumner
2021-08-07 15:24:37 -07:00
parent 7b48e206db
commit 8ce74beafa
5 changed files with 253 additions and 146 deletions

View File

@@ -2,7 +2,7 @@ const std = @import("std");
const Api = @import("./api/schema.zig").Api;
usingnamespace @import("./global.zig");
/// QueryString hash table that does few allocations and preserves the original order
/// QueryString array-backed hash table that does few allocations and preserves the original order
pub const QueryStringMap = struct {
allocator: *std.mem.Allocator,
slice: string,