-
|
Given the following hypothetical project, where there is common/shared functionality defined in some modules, and custom/non-shared functionality defined in others: I know that I can use I'm interested to know if I can define interactions between internal modules and external dependencies in the same way. For example: could I use It seems like #683 allows me to do this (or if not this specifically, something that's probably close enough). Is that accurate? |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 1 reply
-
|
Yes, if I understand correctly -- you should use |
Beta Was this translation helpful? Give feedback.
Yes, if I understand correctly -- you should use
cannot_depend_on_external = ["boto3"]on thereport_aandreport_bmodules. By default it would be allowed in theaws_s3_datastoremodule, so usingdepends_on_externalthere would be more trouble than it's worth (it would need to know all the expected third party dependencies for that module).