is there a nice way to namespace assets in the sam...
# ask-community
d
is there a nice way to namespace assets in the same code location? i.e. I have two `asset_1`s in different groups. I could rename these assets to
group_a_asset_1
and
group_b_asset_1
, but is there another way to separate them neatly inside the same code location?
o
hi @Drew You -- I think
key_prefix
might be what you're looking for here. you can apply this prefix when using load_assets_from_package_module (and similar), or apply the prefix directly on the asset definitions
🌈 1