Compare commits

..

2 Commits

Author SHA1 Message Date
0b2b067575 Add package doc comment 2023-06-22 14:42:16 -07:00
1a31c082d9 Remove unneeded embed import 2023-06-22 14:37:27 -07:00
2 changed files with 2 additions and 3 deletions

View File

@ -1,2 +0,0 @@
# vercmp

View File

@ -1,7 +1,8 @@
// Package vercmp provides comparison between two arbitrary version strings.
// It uses a modified implementation of the rpmvercmp algorithm used by the RPM package manager.
package vercmp package vercmp
import ( import (
_ "embed"
"strconv" "strconv"
"strings" "strings"