MCPcopy Create free account
hub / github.com/git-bug/git-bug / Targets

Function Targets

bridge/core/bridge.go:60–70  ·  view source on GitHub ↗

Targets return all known bridge implementation target

()

Source from the content-addressed store, hash-verified

58
59// Targets return all known bridge implementation target
60func Targets() []string {
61 var result []string
62
63 for key := range bridgeImpl {
64 result = append(result, key)
65 }
66
67 sort.Strings(result)
68
69 return result
70}
71
72// TargetExist return true if the given target has a bridge implementation
73func TargetExist(target string) bool {

Callers 1

TargetsFunction · 0.92

Calls

no outgoing calls

Tested by

no test coverage detected