Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix(resource): now with flattened activities
That way, we don't have recursive method builders, but instead flatten the hierarchy. In our case, this is easier and means less to type. E.g. `hub.user().message().import(...)` now is `hub.user().message_import(...)` In go it would look like this though `hub.user.messages.import(...) which is neater. We will never have that though, as it will initialize a massive amount of data right on the stack, even though only some of it is ever used ... .
- Loading branch information