You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Issue:
the charms implementing a charm-relation-interfaces-backed relation need to have access to the pydantic schemas in schema.py for the interface. Right now we need to copy-paste the code and share it 'manually' or bake it in the charm lib.
It would be nice if we could expose the interfaces from a pypi package (for example) or in some other way, so all the charm needs to do is: from charm_relation_interfaces.foo.v0.bar import BarRequirerSchema
The text was updated successfully, but these errors were encountered:
Issue:
the charms implementing a charm-relation-interfaces-backed relation need to have access to the pydantic schemas in
schema.py
for the interface. Right now we need to copy-paste the code and share it 'manually' or bake it in the charm lib.It would be nice if we could expose the interfaces from a pypi package (for example) or in some other way, so all the charm needs to do is:
from charm_relation_interfaces.foo.v0.bar import BarRequirerSchema
The text was updated successfully, but these errors were encountered: