mirror of
https://github.com/mudler/luet.git
synced 2025-09-15 23:00:04 +00:00
🔧 Speedup package upgrades
Now we can just remove the necessary files and let the installation handle the rest
This commit is contained in:
@@ -16,7 +16,9 @@
|
||||
package installer
|
||||
|
||||
import (
|
||||
"github.com/mudler/luet/pkg/api/core/types"
|
||||
artifact "github.com/mudler/luet/pkg/api/core/types/artifact"
|
||||
"github.com/mudler/luet/pkg/tree"
|
||||
//"github.com/mudler/luet/pkg/solver"
|
||||
)
|
||||
|
||||
@@ -27,3 +29,9 @@ type Client interface {
|
||||
}
|
||||
|
||||
type Repositories []*LuetSystemRepository
|
||||
|
||||
type Repository interface {
|
||||
GetTree() tree.Builder
|
||||
Client(types.Context) Client
|
||||
GetName() string
|
||||
}
|
||||
|
Reference in New Issue
Block a user