Add version informations
Change-Id: If5a932ea9d51c55a31970540076d362c179081b9
diff --git a/config/version.go b/config/version.go
new file mode 100644
index 0000000..3cc61c9
--- /dev/null
+++ b/config/version.go
@@ -0,0 +1,19 @@
+package config
+
+const (
+
+ // Title represents the name of this tool.
+ Title string = "KoralPipe-TermMapper"
+
+ // Description represents a short description of this tool.
+ Description string = "A KoralPipe web service for transforming JSON objects using term mapping rules."
+)
+
+// Version represents the SemVer of the server.
+var Version = "[unset]"
+
+// Buildtime represents the timestamp of the build.
+var Buildtime = "[unset]"
+
+// Buildhash represents a unique hash of the build.
+var Buildhash = "[unset]"