const std = @import("std"); pub const Template = struct { file: std.Io.File, pub fn init(io: std.Io, dir: std.Io.Dir, sub_path: []const u8) !@This() { const file = try dir.openFile(io, sub_path, .{}); return .{ .file = file }; } pub fn replacePlaceholder(template: *Template, key: []const u8, content: []u8) void { _ = template; _ = key; _ = content; } };