srctree

Gregory Mullen parent f1f973b8 b2b2efb8
cleanup imports in directive

src/template/directive.zig added: 5, removed: 4, total 1
@@ -5,9 +5,6 @@ known_type: ?KnownType = null,
tag_block: []const u8,
 
pub const Directive = @This();
const Pages = @import("page.zig");
const PageRuntime = Pages.PageRuntime;
const Template = @import("../template.zig");
 
pub const Otherwise = union(enum) {
required: void,
@@ -488,6 +485,10 @@ pub fn formatTyped(d: Directive, comptime T: type, ctx: T, out: anytype) !void {
}
}
 
const Pages = @import("page.zig");
const PageRuntime = Pages.PageRuntime;
const Template = @import("../template.zig");
 
const std = @import("std");
const eql = std.mem.eql;
const startsWith = std.mem.startsWith;