Skip to content

Commit

Permalink
Merge pull request #161 from abhijitWakchaure/master
Browse files Browse the repository at this point in the history
add go.mod and version API
  • Loading branch information
abhijitWakchaure committed May 25, 2023
2 parents 362052b + f931eda commit e81098f
Show file tree
Hide file tree
Showing 3 changed files with 15 additions and 0 deletions.
1 change: 1 addition & 0 deletions VERSION
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
v0.15.1
3 changes: 3 additions & 0 deletions go.mod
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
module github.com/project-flogo/contrib

go 1.18
11 changes: 11 additions & 0 deletions version.go
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
package contrib

import _ "embed"

//go:embed VERSION
var version string

// Version will return the release version
func Version() string {
return version
}

0 comments on commit e81098f

Please sign in to comment.