Akron | fc77b5e | 2025-06-04 11:44:43 +0200 | [diff] [blame] | 1 | package config |
| 2 | |
| 3 | const ( |
| 4 | |
| 5 | // Title represents the name of this tool. |
| 6 | Title string = "KoralPipe-TermMapper" |
| 7 | |
| 8 | // Description represents a short description of this tool. |
| 9 | Description string = "A KoralPipe web service for transforming JSON objects using term mapping rules." |
| 10 | ) |
| 11 | |
| 12 | // Version represents the SemVer of the server. |
| 13 | var Version = "[unset]" |
| 14 | |
| 15 | // Buildtime represents the timestamp of the build. |
| 16 | var Buildtime = "[unset]" |
| 17 | |
| 18 | // Buildhash represents a unique hash of the build. |
| 19 | var Buildhash = "[unset]" |