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
Currently when dac create a package from load.py and schema.py, it exposes the load function and the Schema class, but any other object defined in those two modules are hidden under DAC_PKG_NAME._load and DAC_PKG_NAME._schema.
In many scenarios it is useful to have access to objects defined in those two modules. Therefore I would be better to make the accessible as DAC_PKG_NAME.load and DAC_PKG_NAME.schema
The text was updated successfully, but these errors were encountered:
Currently when
dac
create a package fromload.py
andschema.py
, it exposes theload
function and theSchema
class, but any other object defined in those two modules are hidden underDAC_PKG_NAME._load
andDAC_PKG_NAME._schema
.In many scenarios it is useful to have access to objects defined in those two modules. Therefore I would be better to make the accessible as
DAC_PKG_NAME.load
andDAC_PKG_NAME.schema
The text was updated successfully, but these errors were encountered: