Merge pull request #88 from rakyll/more-main-dont-export
containerd: do not export any symbols
This commit is contained in:
commit
5bfd26b044
1 changed files with 2 additions and 2 deletions
|
@ -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 {
|
||||||
|
|
Loading…
Reference in a new issue