wings/server/mount.go
2020-05-21 14:53:00 -06:00

9 lines
176 B
Go

package server
// Mount represents a Server Mount.
type Mount struct {
Target string `json:"target"`
Source string `json:"source"`
ReadOnly bool `json:"read_only"`
}