Skip to content

Commit d19671f

Browse files
author
Mike Davis
authored
Allow ClientName and Version to be set at compile time. (#227)
1 parent e48750d commit d19671f

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

pkg/event/version.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818
package event
1919

2020
// Version is the current version of the client
21-
const Version = "1.0.0"
21+
var Version = "1.0.0"
2222

2323
// ClientName is the name of the client
24-
const ClientName = "go-sdk"
24+
var ClientName = "go-sdk"

0 commit comments

Comments
 (0)