11 lines
184 B
Swift
11 lines
184 B
Swift
|
|
struct HBMustacheContext {
|
|
let first: Bool
|
|
let last: Bool
|
|
|
|
init(first: Bool = false, last: Bool = false) {
|
|
self.first = first
|
|
self.last = last
|
|
}
|
|
}
|