Browse Source

refactor: make ovpm.Version a variable not a constant

Mustafa Arici 5 years ago
parent
commit
9694cc34f2
1 changed files with 3 additions and 3 deletions
  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"