mirror of
https://github.com/owncloud/ocis
synced 2026-04-25 17:25:21 +02:00
Bumps [github.com/go-acme/lego/v4](https://github.com/go-acme/lego) from 4.4.0 to 4.25.2. - [Release notes](https://github.com/go-acme/lego/releases) - [Changelog](https://github.com/go-acme/lego/blob/master/CHANGELOG.md) - [Commits](https://github.com/go-acme/lego/compare/v4.4.0...v4.25.2) --- updated-dependencies: - dependency-name: github.com/go-acme/lego/v4 dependency-version: 4.25.2 dependency-type: indirect ... Signed-off-by: dependabot[bot] <support@github.com>
16 lines
275 B
Go
16 lines
275 B
Go
package dns
|
|
|
|
import "fmt"
|
|
|
|
// Version is current version of this library.
|
|
var Version = v{1, 1, 67}
|
|
|
|
// v holds the version of this library.
|
|
type v struct {
|
|
Major, Minor, Patch int
|
|
}
|
|
|
|
func (v v) String() string {
|
|
return fmt.Sprintf("%d.%d.%d", v.Major, v.Minor, v.Patch)
|
|
}
|