Rebrand to Galaxy, major improvements to Bedrock support, still needs some TLC though

This commit is contained in:
Ryan Ward
2026-05-07 11:29:34 -05:00
parent f4e2475c60
commit a41cbd8cc7
2433 changed files with 14208 additions and 9409 deletions
+12
View File
@@ -0,0 +1,12 @@
use anyhow::Result;
use objc2_foundation::NSBundle;
/// Apple Developer Team ID used for code signing and validation.
pub const APPLE_TEAM_ID: &str = "2BBY89MBSN";
/// Get the path to the macOS `.app` bundle.
pub fn get_bundle_path() -> Result<String> {
let bundle = NSBundle::mainBundle();
let path = bundle.bundlePath();
Ok(path.to_string())
}