mirror of
https://github.com/docker/docs.git
synced 2026-03-28 23:08:49 +07:00
12 lines
246 B
Go
12 lines
246 B
Go
package main
|
|
|
|
const daemonBinary = "dockerd"
|
|
|
|
// DaemonProxy acts as a cli.Handler to proxy calls to the daemon binary
|
|
type DaemonProxy struct{}
|
|
|
|
// NewDaemonProxy returns a new handler
|
|
func NewDaemonProxy() DaemonProxy {
|
|
return DaemonProxy{}
|
|
}
|