(id, namespace string)
| 232 | } |
| 233 | |
| 234 | func belongToNamespace(id, namespace string) bool { |
| 235 | return strings.HasPrefix(id, namespace+"_") |
| 236 | } |
| 237 | |
| 238 | func objectName(namespace, name string) string { |
| 239 | return namespace + "_" + name |
no outgoing calls
no test coverage detected
searching dependent graphs…