kodegen_daemon 0.0.4

KODEGEN.ᴀɪ background daemon service
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
//! Build script for `kodegen_daemon`
//!
//! This build script handles cross-platform build tasks including macOS helper
//! app creation, code signing, and platform-specific optimizations.

// Include the build module
#[path = "src/build/mod.rs"]
mod build;

fn main() {
    build::main();
}