diff options
author | 2018-01-25 21:58:46 +0000 | |
---|---|---|
committer | 2018-01-25 21:58:46 +0000 | |
commit | b89480b33f23d72ba439ba861940e856d0bd7fc5 (patch) | |
tree | 5b6cea8fb3a77aaa4bd60188798cfd751cbc6b66 | |
parent | aeacbf6e24cae5c6bad9847628204bd39b6a0ad8 (diff) | |
download | coredns-b89480b33f23d72ba439ba861940e856d0bd7fc5.tar.gz coredns-b89480b33f23d72ba439ba861940e856d0bd7fc5.tar.zst coredns-b89480b33f23d72ba439ba861940e856d0bd7fc5.zip |
Golint: make golint happy (#1433)
CoreVersion needs to be documented for golint, but we can't use too much
text because we grep this file for the coredns version.
-rw-r--r-- | coremain/version.go | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/coremain/version.go b/coremain/version.go index 2e08ff4a0..c22058639 100644 --- a/coremain/version.go +++ b/coremain/version.go @@ -1,7 +1,8 @@ package coremain +// Various CoreDNS constants. const ( - coreName = "CoreDNS" CoreVersion = "1.0.5" + coreName = "CoreDNS" serverType = "dns" ) |