diff options
| author | David Lönnhager <david.l@mullvad.net> | 2025-03-19 18:52:46 +0100 |
|---|---|---|
| committer | David Lönnhager <david.l@mullvad.net> | 2025-03-24 16:43:29 +0100 |
| commit | 85a07b3c58a246497f738bcbf15d2ff5b7d1b577 (patch) | |
| tree | fce8b0e47df3b4c166a246656153b6c1c020909e /talpid-windows/src/lib.rs | |
| parent | bdaefa370f9a0464753690655b017a868872b69b (diff) | |
| download | mullvadvpn-85a07b3c58a246497f738bcbf15d2ff5b7d1b577.tar.xz mullvadvpn-85a07b3c58a246497f738bcbf15d2ff5b7d1b577.zip | |
Add function for checking if file is owned by admin or system account
Diffstat (limited to 'talpid-windows/src/lib.rs')
| -rw-r--r-- | talpid-windows/src/lib.rs | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/talpid-windows/src/lib.rs b/talpid-windows/src/lib.rs index 53fa172ee0..92db769623 100644 --- a/talpid-windows/src/lib.rs +++ b/talpid-windows/src/lib.rs @@ -3,6 +3,9 @@ #![deny(missing_docs)] #![cfg(windows)] +/// File system +pub mod fs; + /// I/O pub mod io; |
