summaryrefslogtreecommitdiff
path: root/vegilctl
diff options
context:
space:
mode:
authornamilsk <namilsk@namilsk.tech>2025-12-31 17:31:34 +0300
committernamilsk <namilsk@namilsk.tech>2025-12-31 17:31:34 +0300
commitafe6b0d5d59c90b3765914eb771ad8237d40a90f (patch)
treea965cdff3536cca2d3ef775980e398ff1a34b41e /vegilctl
Started work on vigil init system
Diffstat (limited to 'vegilctl')
-rw-r--r--vegilctl/Cargo.toml7
-rw-r--r--vegilctl/src/main.rs3
2 files changed, 10 insertions, 0 deletions
diff --git a/vegilctl/Cargo.toml b/vegilctl/Cargo.toml
new file mode 100644
index 0000000..035764a
--- /dev/null
+++ b/vegilctl/Cargo.toml
@@ -0,0 +1,7 @@
+[package]
+name = "vegilctl"
+version = "0.1.0"
+edition = "2024"
+description = "Vegil init user control."
+
+[dependencies]
diff --git a/vegilctl/src/main.rs b/vegilctl/src/main.rs
new file mode 100644
index 0000000..e7a11a9
--- /dev/null
+++ b/vegilctl/src/main.rs
@@ -0,0 +1,3 @@
+fn main() {
+ println!("Hello, world!");
+}