x/eta/containers.ts
123456789101112131415161718import { Cacher } from "./storage.ts";/* TYPES */import type { TemplateFunction } from "./compile.ts";/* END TYPES *//** * Eta's template storage * * Stores partials and cached templates */const templates = new Cacher<TemplateFunction>({});export { templates };