Put public utility items in the top-level namespace
Metadata
Current evaluation
No evaluation has been recorded for this issue yet.
Issue body
### What needs to get done
Instead of (for example):
```python
from craft_application import util
util.get_host_architecture()
```
we should be able to do:
```python
import craft_application
craft_application.get_host_architecture()
```
### Why it needs to get done
https://github.com/canonical/charmcraft/pull/1757#discussion_r1689937899
Evaluation history
No evaluation history available.