Tauri IOS Build

This commit is contained in:
2026-01-23 22:27:20 -05:00
parent 95f8c8ce13
commit 062f73356d
36 changed files with 6348 additions and 6 deletions

View File

@@ -0,0 +1,8 @@
#pragma once
namespace ffi {
extern "C" {
void start_app();
}
}

View File

@@ -0,0 +1,6 @@
#include "bindings/bindings.h"
int main(int argc, char * argv[]) {
ffi::start_app();
return 0;
}