Replies: 1 comment
-
Never mind, it was right in the docs |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
I'm trying to use dioxus as the web dashboard for a system daemon, which requires spawning a handful of other tasks during launch. Currently I have to copy most of the code from dioxus_fullstack::server::launch in order to reuse the same Tokio runtime, or I would have to embed the whole
dioxus::launch
in atokio::block_on
call, which doesn't feel right in any sense. Is there any other more elegant way to do so?Beta Was this translation helpful? Give feedback.
All reactions