summaryrefslogtreecommitdiff
path: root/v1/src/data.rs
diff options
context:
space:
mode:
Diffstat (limited to 'v1/src/data.rs')
-rw-r--r--v1/src/data.rs13
1 files changed, 0 insertions, 13 deletions
diff --git a/v1/src/data.rs b/v1/src/data.rs
deleted file mode 100644
index 4b1da5a..0000000
--- a/v1/src/data.rs
+++ /dev/null
@@ -1,13 +0,0 @@
-pub static MESSAGE: &'static str = "Hello";
-
-pub enum SimpleFsData {
- File(String, String),
- Directory(String, Vec<SimpleFsData>)
-}
-
-// pub static HELLO: &'static SimpleFsData =
-// SimpleFsData:File("hello.txt", "Hello World");
-
-pub fn getData1() -> SimpleFsData {
- SimpleFsData::File("hello.txt".to_string(), "Hello".to_string())
-}