mirror of
https://github.com/mudler/luet.git
synced 2025-09-01 15:18:28 +00:00
Add boltdb implementation for packageset and db
This commit is contained in:
committed by
Ettore Di Giacinto
parent
da8734ed6a
commit
c3197d70fc
@@ -108,3 +108,15 @@ func (db *InMemoryDatabase) CreatePackage(p Package) (string, error) {
|
||||
}
|
||||
return ID, nil
|
||||
}
|
||||
|
||||
func (db *InMemoryDatabase) FindPackage(name, version string) (Package, error) {
|
||||
return nil, errors.New("Not implemented")
|
||||
}
|
||||
|
||||
func (db *InMemoryDatabase) UpdatePackage(p Package) error {
|
||||
return errors.New("Not implemented")
|
||||
}
|
||||
|
||||
func (db *InMemoryDatabase) GetPackages() []string {
|
||||
return []string{}
|
||||
}
|
||||
|
Reference in New Issue
Block a user