Skip to content

Commit

Permalink
fix: fixed #[main_export]
Browse files Browse the repository at this point in the history
Yanking beta 15!
  • Loading branch information
arctic-hen7 committed Jan 13, 2023
1 parent 72f310f commit f4d6821
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions packages/perseus-macro/src/entrypoint.rs
Original file line number Diff line number Diff line change
Expand Up @@ -220,8 +220,8 @@ pub fn main_export_impl(input: MainFn) -> TokenStream {

// The browser-specific `main` function
#[cfg(client)]
pub fn main() -> ::perseus::ClientReturn {
::perseus::run_client(__perseus_simple_main);
pub fn main() -> ::perseus::client::ClientReturn {
::perseus::client::run_client(__perseus_simple_main);
Ok(())
}

Expand Down

0 comments on commit f4d6821

Please sign in to comment.