Files
marka/template/structs.go
Max Richter c687eff53d big tings
2025-08-17 15:16:17 +02:00

31 lines
552 B
Go

package template
type BlockType string
const (
DataBlock BlockType = "data" // content between lines "{" and "}"
MatchingBlock BlockType = "matching" // everything outside data blocks
)
type BlockField struct {
Path string
CodecType CodecType
Required bool
Value any
}
type Block struct {
Type BlockType
Path string
Codec CodecType
Required bool
ListTemplate string
Fields []BlockField
Value any
content string
}
func (b Block) GetContent() string {
return b.content
}