TargetExist return true if the given target has a bridge implementation
(target string)
| 71 | |
| 72 | // TargetExist return true if the given target has a bridge implementation |
| 73 | func TargetExist(target string) bool { |
| 74 | _, ok := bridgeImpl[target] |
| 75 | return ok |
| 76 | } |
| 77 | |
| 78 | // LoginMetaKey return the metadata key used to store the remote bug-tracker login |
| 79 | // on the user identity. The corresponding value is used to match identities and |
no outgoing calls
no test coverage detected