MCPcopy
hub / github.com/danielmiessler/Fabric / IsConfigured

Method IsConfigured

internal/tools/patterns_loader.go:72–80  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

70}
71
72func (o *PatternsLoader) IsConfigured() (ret bool) {
73 ret = o.PluginBase.IsConfigured()
74 if ret {
75 if _, err := os.Stat(o.loadedFilePath); os.IsNotExist(err) {
76 ret = false
77 }
78 }
79 return
80}
81
82func (o *PatternsLoader) Setup() (err error) {
83 if err = o.PluginBase.Setup(); err != nil {

Callers

nothing calls this directly

Calls 1

IsConfiguredMethod · 0.65

Tested by

no test coverage detected