浏览代码

refactor: make ovpm.Version a variable not a constant

Mustafa Arici 5 年之前
父节点
当前提交
9694cc34f2
共有 1 个文件被更改,包括 3 次插入3 次删除
  1. 3 3
      const.go

+ 3 - 3
const.go

@@ -1,9 +1,9 @@
 package ovpm
 
-const (
-	// Version defines the version of ovpm.
-	Version = "0.2.7"
+// Version defines the version of ovpm.
+var Version = "development"
 
+const (
 	// DefaultVPNPort is the default OpenVPN port to listen.
 	DefaultVPNPort = "1197"