MCPcopy Index your code
hub / github.com/aptly-dev/aptly / Config

Method Config

context/context.go:82–87  ·  view source on GitHub ↗

Config loads and returns current configuration

()

Source from the content-addressed store, hash-verified

80
81// Config loads and returns current configuration
82func (context *AptlyContext) Config() *utils.ConfigStructure {
83 context.Lock()
84 defer context.Unlock()
85
86 return context.config()
87}
88
89func (context *AptlyContext) config() *utils.ConfigStructure {
90 if !context.configLoaded {

Callers 15

UploadPathMethod · 0.95
aptlyConfigShowFunction · 0.80
aptlyMirrorCreateFunction · 0.80
getVerifierFunction · 0.80
aptlyRepoIncludeFunction · 0.80
aptlyServeFunction · 0.80
aptlyMirrorUpdateFunction · 0.80
aptlyAPIServeFunction · 0.80
getSignerFunction · 0.80
aptlyMirrorEditFunction · 0.80
apiDiskFreeFunction · 0.80

Calls 1

configMethod · 0.95