rbxcloud
rbxcloud copied to clipboard
Flatten the `rbx` module?
Is there any reason this exists? It seems like noise.
This exists simply for code organization. Is there a way to flatten this out without pulling the files out of rbx, or is that the only way?
@Sleitnick
I believe it'd involve changing src/lib.rs to this:
pub mod rbx;
pub use rbx::*;
Ok, yeah I'm fine with that change.