logisheets_controller 0.7.0

the core of LogiSheets
Documentation
1
2
3
4
5
6
7
8
9
10
11
pub mod comment;
pub mod merge_cell;

use comment::Comments;
use merge_cell::MergeCells;

#[derive(Debug, Clone, Default)]
pub struct CellAttachmentsManager {
    pub comments: Comments,
    pub merge_cells: MergeCells,
}