Imported Upstream version 1.0.1

This commit is contained in:
Sébastien Delafond
2017-07-04 14:45:08 +02:00
parent 1ee35b841d
commit 4f12259bc0
5531 changed files with 1834599 additions and 742844 deletions
+31
View File
@@ -0,0 +1,31 @@
package cmd
import (
ctx "github.com/smira/aptly/context"
"github.com/smira/flag"
)
var context *ctx.AptlyContext
// ShutdownContext shuts context down
func ShutdownContext() {
context.Shutdown()
}
// CleanupContext does partial shutdown of context
func CleanupContext() {
context.Cleanup()
}
// InitContext initializes context with default settings
func InitContext(flags *flag.FlagSet) error {
var err error
if context != nil {
panic("context already initialized")
}
context, err = ctx.NewContext(flags)
return err
}