Files
ironmount/internal/driver/type.go
2025-08-10 13:07:05 +02:00

27 lines
428 B
Go

package driver
// CreateRequest is the JSON request for Create
type CreateRequest struct {
Name string
}
type GetRequest 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
}