Split core code into ly-core library

Signed-off-by: AnErrupTion <anerruption@disroot.org>
This commit is contained in:
AnErrupTion
2026-01-18 21:07:53 +01:00
parent 456916f059
commit d7f64676ee
18 changed files with 64 additions and 21 deletions

6
ly-core/src/UidRange.zig Normal file
View File

@@ -0,0 +1,6 @@
const std = @import("std");
// We set both values to 0 by default so that, in case they aren't present in
// the login.defs for some reason, then only the root username will be shown
uid_min: std.posix.uid_t = 0,
uid_max: std.posix.uid_t = 0,