mirror of
https://github.com/beclab/Olares
synced 2026-04-21 21:47:56 +00:00
8 lines
241 B
Go
8 lines
241 B
Go
package utils
|
|
|
|
import "github.com/Masterminds/semver/v3"
|
|
|
|
func ParseOlaresVersionString(versionString string) (*semver.Version, error) {
|
|
// todo: maybe some other custom processing only for olares
|
|
return semver.NewVersion(versionString)
|
|
}
|