mirror of
https://github.com/GraphiteEditor/Graphite.git
synced 2026-09-26 06:58:11 +08:00
- Move message handler payload data into structs
- Organize the file structure used by `editor/src/messages/portfolio/document` `/node_graph` and `/graph_operation`
- Make derive attributes use `serde::Serialize, serde::Deserialize` consistently instead of `use serde::{Deserialize, Serialize};` imports
- Various other code cleanup and refactoring
12 lines
306 B
Rust
12 lines
306 B
Rust
mod portfolio_message;
|
|
mod portfolio_message_handler;
|
|
|
|
pub mod document;
|
|
pub mod menu_bar;
|
|
pub mod utility_types;
|
|
|
|
#[doc(inline)]
|
|
pub use portfolio_message::{PortfolioMessage, PortfolioMessageDiscriminant};
|
|
#[doc(inline)]
|
|
pub use portfolio_message_handler::{PortfolioMessageData, PortfolioMessageHandler};
|