blob: cb073b760d3c005f551d05ca0523572bf244e0a7 [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.
Akron247a93a2026-02-20 16:28:40 +01009 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]"