Add stub TUI app

This commit is contained in:
Matthew Gordon 2025-10-30 20:08:50 -03:00
parent 7b7e307a51
commit c9aa5290e9
3 changed files with 10 additions and 1 deletions

View File

@ -1,3 +1,3 @@
[workspace] [workspace]
resolver = "2" resolver = "2"
members = ["core"] members = ["core", "tui"]

6
tui/Cargo.toml Normal file
View File

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

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

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