mirror of
https://github.com/nicotsx/ironmount.git
synced 2025-12-10 12:10:51 +01:00
23 lines
387 B
Go
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
|
|
}
|