| 1 | // SPDX-License-Identifier: GPL-3.0-or-later |
| 2 | |
| 3 | package program |
| 4 | |
| 5 | // Template is a parsed render template used for chart IDs and dimension names. |
| 6 | // |
| 7 | // Parsing/validation is done by compiler packages. In phase-1 templates are |
| 8 | // literal-only strings without placeholder/transform syntax. |
| 9 | type Template struct { |
| 10 | Raw string |
| 11 | } |
| 12 | |
| 13 | func (t Template) clone() Template { |
| 14 | return t |
| 15 | } |