MCPcopy Create free account
hub / github.com/driangle/taskmd / RegisteredNames

Function RegisteredNames

apps/cli/internal/sync/registry.go:30–37  ·  view source on GitHub ↗

RegisteredNames returns the sorted names of all registered sources.

()

Source from the content-addressed store, hash-verified

28
29// RegisteredNames returns the sorted names of all registered sources.
30func RegisteredNames() []string {
31 names := make([]string, 0, len(sources))
32 for n := range sources {
33 names = append(names, n)
34 }
35 sort.Strings(names)
36 return names
37}

Callers 1

GetSourceFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected