1
0
Fork 0
mirror of https://github.com/moby/moby.git synced 2022-11-09 12:21:53 -05:00
moby--moby/docker/client.go
Antonio Murdaca 927d13bc3c Remove dead code
Signed-off-by: Antonio Murdaca <runcom@linux.com>
2015-06-20 19:14:15 +02:00

11 lines
210 B
Go

// +build !daemon
package main
import (
"log" // see gh#8745, client needs to use go log pkg
)
func mainDaemon() {
log.Fatal("This is a client-only binary - running the Docker daemon is not supported.")
}