feat: basic volume plugin commands

This commit is contained in:
Nicolas Meienberger
2025-08-09 12:36:16 +02:00
parent 8d86f56b87
commit e7463d34ef
13 changed files with 222 additions and 9 deletions

8
internal/driver/state.go Normal file
View File

@@ -0,0 +1,8 @@
package driver
type Volume struct {
Name string
Path string
}
var volumes = map[string]Volume{}