import Foundation struct BoxTemplate: Template { enum Key: String, CaseIterable { case title = "TITLE" case text = "TEXT" } static let templateName = "box.html" var raw: String let results: GenerationResultsHandler }