pttodoest

master
bel 2025-11-09 21:21:35 -07:00
parent 263482f607
commit 7a23fba2ae
4 changed files with 17 additions and 0 deletions

1
.gitignore vendored
View File

@ -1,4 +1,5 @@
**/*.sw* **/*.sw*
**/target/
todo-server-yaml todo-server-yaml
cmd/cmd cmd/cmd
cmd/cli cmd/cli

7
pttodoest/Cargo.lock generated Normal file
View File

@ -0,0 +1,7 @@
# This file is automatically @generated by Cargo.
# It is not intended for manual editing.
version = 4
[[package]]
name = "pttodoest"
version = "0.1.0"

6
pttodoest/Cargo.toml Normal file
View File

@ -0,0 +1,6 @@
[package]
name = "pttodoest"
version = "0.1.0"
edition = "2024"
[dependencies]

3
pttodoest/src/main.rs Normal file
View File

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