admin cli beginnings

This commit is contained in:
shockrah 2024-10-28 19:59:35 -07:00
parent ec7674fe44
commit e85fa7b21c
5 changed files with 1623 additions and 0 deletions

2
.gitignore vendored Normal file
View File

@ -0,0 +1,2 @@
/target
*.swp

1606
Cargo.lock generated Normal file

File diff suppressed because it is too large Load Diff

6
Cargo.toml Normal file
View File

@ -0,0 +1,6 @@
[workspace]
members = [
"admin-cli",
"api"
]

6
admin-cli/Cargo.toml Normal file
View File

@ -0,0 +1,6 @@
[package]
name = "admin-cli"
version = "0.1.0"
edition = "2021"
[dependencies]

3
admin-cli/src/main.rs Normal file
View File

@ -0,0 +1,3 @@
fn main() {
println!("Hello, world!");
}