1
0

feat: implement list of available distros

This commit is contained in:
2023-05-18 22:02:41 +00:00
parent 9c237b52db
commit f0c82f9289
7 changed files with 45 additions and 2 deletions

View File

@ -47,6 +47,10 @@ func (d Debian) ID() distro.ID {
return distro.Debian
}
func (d Debian) Release() string {
return d.release.String()
}
func (d Debian) Equal(dd distro.Distro) bool {
if dd.ID != distro.Debian {
return false