Skip to content
Snippets Groups Projects
Select Git revision
  • c34d64fd3514ca3e678d37c3914eaeff9b4fbd80
  • master default protected
  • url-repo-rename
  • jono/ui-fix
4 results

README.md

Blame
  • version.go 350 B
    package bindings
    
    import "gitlab.com/elixxir/client/api"
    
    // GetVersion returns the api SEMVER
    func GetVersion() string {
    	return api.SEMVER
    }
    
    // GetGitVersion rturns the api GITVERSION
    func GetGitVersion() string {
    	return api.GITVERSION
    }
    
    // GetDependencies returns the api DEPENDENCIES
    func GetDependencies() string {
    	return api.DEPENDENCIES
    }