initial commit
This commit is contained in:
19
internal/distros/factory.go
Normal file
19
internal/distros/factory.go
Normal file
@@ -0,0 +1,19 @@
|
||||
package distros
|
||||
|
||||
import (
|
||||
"github.com/AvengeMedia/danklinux/internal/deps"
|
||||
)
|
||||
|
||||
// NewDependencyDetector creates a DependencyDetector for the specified distribution
|
||||
func NewDependencyDetector(distribution string, logChan chan<- string) (deps.DependencyDetector, error) {
|
||||
distro, err := NewDistribution(distribution, logChan)
|
||||
if err != nil {
|
||||
return nil, err
|
||||
}
|
||||
return distro, nil
|
||||
}
|
||||
|
||||
// NewPackageInstaller creates a Distribution for package installation
|
||||
func NewPackageInstaller(distribution string, logChan chan<- string) (Distribution, error) {
|
||||
return NewDistribution(distribution, logChan)
|
||||
}
|
||||
Reference in New Issue
Block a user