I am in the process of incorporating Tauri into my program. Currently, I have a async main function which calls many other async functions inside of it. I'm using #[tokio::main] for this.
I'm experiencing an issue with starting a runtime within a runtime. I think this is because Tauri also creates a runtime then Tokio tries to create another.
I have no idea what to do, and everything I try to do does not seem to solve the issue.