diff options
-rw-r--r-- | coremain/run.go | 6 | ||||
-rw-r--r-- | coremain/version.go | 6 |
2 files changed, 6 insertions, 6 deletions
diff --git a/coremain/run.go b/coremain/run.go index 1a5282bc4..e33b6843f 100644 --- a/coremain/run.go +++ b/coremain/run.go @@ -215,9 +215,3 @@ var ( gitShortStat string // git diff-index --shortstat gitFilesModified string // git diff-index --name-only HEAD ) - -const ( - coreName = "CoreDNS" - coreVersion = "001" - serverType = "dns" -) diff --git a/coremain/version.go b/coremain/version.go new file mode 100644 index 000000000..5b4b4aed5 --- /dev/null +++ b/coremain/version.go @@ -0,0 +1,6 @@ +const ( + coreName = "CoreDNS" + coreVersion = "001" + + serverType = "dns" +) |