Setup for data.

This commit is contained in:
2023-06-03 15:27:26 -04:00
parent 914e7a8146
commit 30ea8d978c
2 changed files with 32 additions and 7 deletions

View File

@ -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()
}
}