Setup for data.
This commit is contained in:
@ -1,11 +1,12 @@
|
||||
#[derive(Clone)]
|
||||
pub struct Store;
|
||||
|
||||
impl Store {
|
||||
fn new() -> Self {
|
||||
pub fn new() -> Self {
|
||||
Self {}
|
||||
}
|
||||
|
||||
fn list(&self) -> Vec<String> {
|
||||
pub fn list(&self) -> Vec<String> {
|
||||
Vec::new()
|
||||
}
|
||||
}
|
||||
|
Reference in New Issue
Block a user