src: Add module files

Signed-off-by: Dakkshesh <beakthoven@gmail.com>
This commit is contained in:
Dakkshesh
2025-08-06 19:46:42 +05:30
parent 87bb7b2df1
commit e46820275f
76 changed files with 6720 additions and 44 deletions
+14
View File
@@ -0,0 +1,14 @@
DEBUG=false
MODDIR=${0%/*}
cd $MODDIR
(
while [ true ]; do
$MODDIR/daemon "$MODDIR"
if [ $? -ne 0 ]; then
exit 1
fi
done
) &