CHGenerator/Sources/Generator/Templates/Elements/PlaceholderTemplate.swift

14 lines
225 B
Swift
Raw Normal View History

2022-08-16 10:39:05 +02:00
import Foundation
struct PlaceholderTemplate: Template {
enum Key: String, CaseIterable {
case title = "TITLE"
case text = "TEXT"
}
static let templateName = "empty.html"
var raw: String
}