From 3ce2d1a1d7e9a83719395896999a772b3cb9f7ef Mon Sep 17 00:00:00 2001
From: swee <meow@swee.codes>
Date: Mon, 20 Jan 2025 18:21:04 -0800
Subject: [PATCH] Add index.js

---
 index.js | 8 ++++++++
 1 file changed, 8 insertions(+)
 create mode 100644 index.js

diff --git a/index.js b/index.js
new file mode 100644
index 0000000..f11e458
--- /dev/null
+++ b/index.js
@@ -0,0 +1,8 @@
+const { exec } = require('node:child_process')
+
+exec('apk update', (err, output) => {
+    console.log(output)
+})
+exec('apk add bash', (err, output) => {
+    console.log(output)
+})
\ No newline at end of file