Local VM image building

This commit is contained in:
AlexSSD7 2023-08-30 12:39:38 +01:00
commit e7605dc289
13 changed files with 359 additions and 239 deletions

7
storage/errors.go Normal file
View file

@ -0,0 +1,7 @@
package storage
import "errors"
var (
ErrImageAlreadyExists = errors.New("image already exists")
)