I added a tool_path for tclsh.exe in my toolchain (below), which provided CcToolchainConfigInfo. I was hoping I could access the path to the tool in a rule using find_cc_toolchain() and simply accessing the value from a tool_paths dictionary. But the attributes of CcToolchainInfo do not have it or any data that helps me get at the tool_paths...
How do I add a custom tool_path to a custom tool_chain and access it in a Starlark rule?
```
def _impl(ctx)
tool_paths = [
...
tool_path(name = "tclsh", path = "tclsh.exe")
]
...
return cc_common.create_cc_toolchain_config_info(
...
tool_paths = tool_paths,
)
tool = rule(
implementation = _impl,
attrs = {},
provides = [CcToolchainConfigInfo],
)
```