diff options
| -rw-r--r-- | TODO.md | 12 | ||||
| -rw-r--r-- | makima/Cargo.lock | 7 | ||||
| -rw-r--r-- | makima/Cargo.toml | 6 | ||||
| -rw-r--r-- | makima/src/main.rs | 3 |
4 files changed, 16 insertions, 12 deletions
diff --git a/TODO.md b/TODO.md deleted file mode 100644 index b11306f..0000000 --- a/TODO.md +++ /dev/null @@ -1,12 +0,0 @@ -# TODO List - -## Design Requirements -- [ ] Create a logo like the rising heart sun but fixed instead of rotating -- [ ] Create a logo shaped like the A10 interface headset clips in red, angled design - - -## Authentication System -- [ ] Implement auth system (evaluate Auth0 or other turnkey solutions) - -## Core Functionality -- [ ] Implement the main mechanism diff --git a/makima/Cargo.lock b/makima/Cargo.lock new file mode 100644 index 0000000..cb5e3b5 --- /dev/null +++ b/makima/Cargo.lock @@ -0,0 +1,7 @@ +# This file is automatically @generated by Cargo. +# It is not intended for manual editing. +version = 4 + +[[package]] +name = "makima" +version = "0.1.0" diff --git a/makima/Cargo.toml b/makima/Cargo.toml new file mode 100644 index 0000000..2086c36 --- /dev/null +++ b/makima/Cargo.toml @@ -0,0 +1,6 @@ +[package] +name = "makima" +version = "0.1.0" +edition = "2024" + +[dependencies] diff --git a/makima/src/main.rs b/makima/src/main.rs new file mode 100644 index 0000000..e7a11a9 --- /dev/null +++ b/makima/src/main.rs @@ -0,0 +1,3 @@ +fn main() { + println!("Hello, world!"); +} |
