mirror of
https://github.com/AppFlowy-IO/AppFlowy.git
synced 2025-07-28 03:21:54 +00:00
12 lines
180 B
Rust
12 lines
180 B
Rust
![]() |
use crate::services::tasks::task::Task;
|
||
|
|
||
|
pub struct GridTaskStore {
|
||
|
tasks: Vec<Task>,
|
||
|
}
|
||
|
|
||
|
impl GridTaskStore {
|
||
|
pub fn new() -> Self {
|
||
|
Self { tasks: vec![] }
|
||
|
}
|
||
|
}
|