mirror of
https://github.com/GraphiteEditor/Graphite.git
synced 2026-09-26 08:28:12 +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
15 lines
371 B
Rust
15 lines
371 B
Rust
mod document_message;
|
|
mod document_message_handler;
|
|
|
|
pub mod graph_operation;
|
|
pub mod navigation;
|
|
pub mod node_graph;
|
|
pub mod overlays;
|
|
pub mod properties_panel;
|
|
pub mod utility_types;
|
|
|
|
#[doc(inline)]
|
|
pub use document_message::{DocumentMessage, DocumentMessageDiscriminant};
|
|
#[doc(inline)]
|
|
pub use document_message_handler::{DocumentMessageData, DocumentMessageHandler};
|