Merge pull request #88 from rakyll/more-main-dont-export

containerd: do not export any symbols
This commit is contained in:
Michael Crosby 2016-01-25 15:14:42 -08:00
commit 5bfd26b044

View file

@ -24,7 +24,7 @@ import (
) )
const ( const (
Usage = `High performance container daemon` usage = `High performance container daemon`
minRlimit = 1024 minRlimit = 1024
) )
@ -79,7 +79,7 @@ func main() {
app := cli.NewApp() app := cli.NewApp()
app.Name = "containerd" app.Name = "containerd"
app.Version = containerd.Version app.Version = containerd.Version
app.Usage = Usage app.Usage = usage
app.Authors = authors app.Authors = authors
app.Flags = daemonFlags app.Flags = daemonFlags
app.Before = func(context *cli.Context) error { app.Before = func(context *cli.Context) error {