Initial commit

This commit is contained in:
Michael Crosby
2015-11-05 15:29:53 -08:00
commit 15a96783ca
12 changed files with 911 additions and 0 deletions

30
containerd/main.go Normal file
View File

@@ -0,0 +1,30 @@
package main
import (
"os"
"github.com/Sirupsen/logrus"
"github.com/codegangsta/cli"
)
const (
Version = "0.0.1"
Usage = `High performance conatiner daemon`
)
func main() {
app := cli.NewApp()
app.Name = "containerd"
app.Version = Version
app.Usage = Usage
app.Authors = []cli.Author{
Name: "@crosbymichael",
Email: "crosbymichael@gmail.com",
}
app.Commands = []cli.Command{
DaemonCommand,
}
if err := app.Run(os.Args); err != nil {
logrus.Fatal(err)
}
}