Files
ironmount/internal/driver/type.go
2025-08-09 12:36:16 +02:00

23 lines
387 B
Go

package driver
// CreateRequest is the JSON request for Create
type CreateRequest struct {
Name string
}
// RemoveRequest is the JSON request for Remove
type RemoveRequest struct {
Name string
}
// MountRequest is the JSON request for Mount
type MountRequest struct {
Name string
ID string
}
// PathRequest is the JSON request for Path
type PathRequest struct {
Name string
}