mirror of
https://github.com/docker/cli.git
synced 2026-01-15 07:40:57 +03:00
Also, use it in all the places. :) Docker-DCO-1.1-Signed-off-by: Andrew Page <admwiggin@gmail.com> (github: tianon) Upstream-commit: da04f49b383c02ee28c32f948048b9e9a402bb4f Component: engine
12 lines
132 B
Go
12 lines
132 B
Go
package main
|
|
|
|
import (
|
|
"github.com/dotcloud/docker/sysinit"
|
|
)
|
|
|
|
func main() {
|
|
// Running in init mode
|
|
sysinit.SysInit()
|
|
return
|
|
}
|