mirror of
https://github.com/pchuan98/codex.git
synced 2026-07-01 00:31:56 +08:00
- DPAPI helpers for storing Sandbox user passwords securely - creation of Offline/Online sandbox users - ACL setup for sandbox users - firewall rule setup
13 lines
234 B
Rust
13 lines
234 B
Rust
#[path = "../setup_main_win.rs"]
|
|
mod win;
|
|
|
|
#[cfg(target_os = "windows")]
|
|
fn main() -> anyhow::Result<()> {
|
|
win::main()
|
|
}
|
|
|
|
#[cfg(not(target_os = "windows"))]
|
|
fn main() {
|
|
panic!("codex-windows-sandbox-setup is Windows-only");
|
|
}
|