Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix(macros): Provide full import paths in
light_accounts
macro
Before this change, using `#[light_accounts]` macro required adding necessary imports manually, e.g. ```rust use account_compression::program::AccountCompression; use light_system_program::program::LightSystemProgram; ``` Which might've been annoying for developers. This change uses full paths for all foregin types used inside macros, so no additional imports are needed.
- Loading branch information