aboutsummaryrefslogtreecommitdiff
path: root/lib/AlgaOS/Updater.pm
diff options
context:
space:
mode:
authorsergio <sergiotarxz@posteo.net>2026-09-12 21:02:10 +0200
committersergio <sergiotarxz@posteo.net>2026-09-12 21:02:10 +0200
commita37cb3a7b7a7d00c188b24fd102bb4636e67d4e5 (patch)
treeff47e6ee5891e1d1876eaa88fb3a5481b3c73ba3 /lib/AlgaOS/Updater.pm
parent1571a9da93a2b4492157d9fafba4422cc7fe4b71 (diff)
Renaming everything to prepare for the updater development.
Diffstat (limited to 'lib/AlgaOS/Updater.pm')
-rw-r--r--lib/AlgaOS/Updater.pm14
1 files changed, 14 insertions, 0 deletions
diff --git a/lib/AlgaOS/Updater.pm b/lib/AlgaOS/Updater.pm
new file mode 100644
index 0000000..8398fca
--- /dev/null
+++ b/lib/AlgaOS/Updater.pm
@@ -0,0 +1,14 @@
+package AlgaOS::Updater;
+
+use v5.38.0;
+use strict;
+use warnings;
+
+
+our $VERSION = "0.001";
+
+require XSLoader;
+
+XSLoader::load(__PACKAGE__, $VERSION);
+require AlgaOS::Updater::Parents;
+1;