wings/server/mount.go

9 lines
176 B
Go
Raw Normal View History

2020-05-21 20:53:00 +00:00
package server
// Mount represents a Server Mount.
type Mount struct {
Target string `json:"target"`
Source string `json:"source"`
ReadOnly bool `json:"read_only"`
}