blob: 3cc61c9681fd622eadf3a7a7fe600ae2e2c57731 [file] [log] [blame]
Akronfc77b5e2025-06-04 11:44:43 +02001package config
2
3const (
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.
13var Version = "[unset]"
14
15// Buildtime represents the timestamp of the build.
16var Buildtime = "[unset]"
17
18// Buildhash represents a unique hash of the build.
19var Buildhash = "[unset]"