1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36
|
package cmd
import (
ctx "github.com/aptly-dev/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
}
// GetContext gives access to the context
func GetContext() *ctx.AptlyContext {
return context
}
|