AliasSet returns the alias to fully-qualified name mapping stored in the container.
()
| 135 | |
| 136 | // AliasSet returns the alias to fully-qualified name mapping stored in the container. |
| 137 | func (c *Container) AliasSet() map[string]string { |
| 138 | if c == nil || c.aliases == nil { |
| 139 | return noAliases |
| 140 | } |
| 141 | return c.aliases |
| 142 | } |
| 143 | |
| 144 | // findAlias takes a name as input and returns an alias expansion if one exists. |
| 145 | // |
no outgoing calls