This commit is contained in:
Joshua Perry 2024-06-06 18:19:38 +01:00
parent c59d9eb34a
commit 9ae4b9552f
4 changed files with 8 additions and 0 deletions

1
src/api.rs Normal file
View File

@ -0,0 +1 @@
//TODO: Api Structure

3
src/auth.rs Normal file
View File

@ -0,0 +1,3 @@
//TODO: New User Auth loop
//TODO: Existing User Auth loop
//TODO: Hash Function

1
src/backup.rs Normal file
View File

@ -0,0 +1 @@
//TODO: Logic for backing up an account

3
src/lib.rs Normal file
View File

@ -0,0 +1,3 @@
mod api;
mod backup;
mod db;