Merge branch '94-add-tui-component-to-monorepo' into 71-seperate-core-functionality-from-app-logic

* 94-add-tui-component-to-monorepo:
  feature(tui): add basic structure for a tui component to repo
This commit is contained in:
Patryk Hegenberg 2024-05-05 14:29:14 +02:00
commit bb874b8a89
2 changed files with 13 additions and 0 deletions

10
caesar-tui/Cargo.toml Normal file
View file

@ -0,0 +1,10 @@
[package]
name = "caesar-tui"
version = "0.0.1"
edition = "2021"
authors = ["Manuel Keidel, Patryk Hegenberg, Krzysztof Stankiewicz"]
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
caesar-core = { path = "../caesar-core" }

3
caesar-tui/src/main.rs Normal file
View file

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