Skip to content

Commit 943ec9c

Browse files
committed
changed file structure, trying to implement legacy next
Signed-off-by: addrian-77 <lunguadrian30@gmail.com>
1 parent 7ac44ef commit 943ec9c

34 files changed

Lines changed: 44 additions & 33 deletions

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ resolver= "2"
88

99
members = [
1010
"tockloader-cli",
11-
"tock-process-console",
11+
"process-console",
1212
"tbf-parser",
1313
"tockloader-lib",
1414
]
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
# Copyright OXIDOS AUTOMOTIVE 2024.
44

55
[package]
6-
name = "tock-process-console"
6+
name = "process-console"
77
version = "0.1.0"
88
edition = "2021"
99

process-console/src/legacy/lib.rs

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
pub fn run() {
2+
// TODO
3+
panic!();
4+
}

process-console/src/legacy/mod.rs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
pub mod lib;

process-console/src/lib.rs

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
pub mod legacy;
2+
pub mod pconsole;
File renamed without changes.
File renamed without changes.
File renamed without changes.

0 commit comments

Comments
 (0)