I have a module foo.zig which is useful but I want to augment it with more functions, without modifying it, so I created foo-wrapper.zig that has one or two more functions, and foo.zig has dozens of functions.
How do I re-export (with pub or something) all functions from foo.zig to all consumers of foo-wrapper.zig?