blob: c86721f17b7627cf86faee4c13b3b6746afa5a47 [file] [log] [blame]
Akronfc77b5e2025-06-04 11:44:43 +02001package config
2
3const (
4
5 // Title represents the name of this tool.
Akron2ef703c2025-07-03 15:57:42 +02006 Title string = "Koral-Mapper"
Akronfc77b5e2025-06-04 11:44:43 +02007
8 // Description represents a short description of this tool.
Akron2ef703c2025-07-03 15:57:42 +02009 Description string = "A KoralPipe web service for transforming JSON objects using mapping rules."
Akronfc77b5e2025-06-04 11:44:43 +020010)
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]"