mirror of
https://github.com/AvengeMedia/DankMaterialShell.git
synced 2025-12-05 21:15:38 -05:00
20 lines
612 B
Go
20 lines
612 B
Go
package distros
|
|
|
|
import (
|
|
"github.com/AvengeMedia/DankMaterialShell/core/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)
|
|
}
|