package tfelem import "time" type PureTextElement struct { PureText string } func (this *PureTextElement) ExpectedSize() int { return len(this.PureText) } func (this *PureTextElement) PrintElement(t time.Time) string { return this.PureText }