module GiantPkg
module A
using Reexport
@reexport using SubPkgA
end
end
SubPkgA is a standalone package that developed independently (e.g., ImageCore, ImageFiltering), and GiantPkg is an umbrella package (e.g., Images). This helps organize exported symbols in a hierarchical way.
I'm not sure if this is doable:
that mimics
SubPkgA
is a standalone package that developed independently (e.g.,ImageCore
,ImageFiltering
), andGiantPkg
is an umbrella package (e.g.,Images
). This helps organize exported symbols in a hierarchical way.cc: @timholy