3c878aefe8
Mount is self contained and generic, it should be in pkg, to allow other pkg modules to use it. Docker-DCO-1.1-Signed-off-by: Paul Nasrat <pnasrat@gmail.com> (github: pnasrat)
9 lines
194 B
Go
9 lines
194 B
Go
package mount
|
|
|
|
func mount(device, target, mType string, flag uintptr, data string) error {
|
|
panic("Not implemented")
|
|
}
|
|
|
|
func unmount(target string, flag int) error {
|
|
panic("Not implemented")
|
|
}
|