Skip to content

Commit 5e48be7

Browse files
1 parent 34e61fc commit 5e48be7

2 files changed

Lines changed: 4 additions & 26 deletions

File tree

.gitmodules

Lines changed: 0 additions & 4 deletions
This file was deleted.

Source/Library.rs

Lines changed: 4 additions & 22 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
#![allow(non_snake_case)]
2+
#![feature(proc_macro_hygiene)]
23

34
//! # Rest: JavaScript Bundler for VS Code Platform Code
45
//!
@@ -24,27 +25,8 @@
2425
//! - [`Fn`]: Core bundling functions and OXC integration
2526
//! - [`Struct`]: Configuration structures and CLI command definitions
2627
27-
#[allow(dead_code)]
28-
#[tokio::main]
29-
/// The main entry point for the application.
30-
///
31-
/// This function initializes the command structure and executes the
32-
/// asynchronous function defined within it. The function is marked with the
33-
/// `#[tokio::main]` attribute to enable asynchronous execution using the Tokio
34-
/// runtime.
35-
///
36-
/// # Panics
37-
///
38-
/// This function does not panic.
39-
///
40-
/// # Example
41-
///
42-
/// ```rust
43-
/// #[tokio::main]
44-
/// async fn main() { (Struct::Binary::Command::Struct::Fn().Fn)().await }
45-
46-
/// ```
47-
28+
/// Core bundling functions and OXC integration
4829
pub mod Fn;
4930

50-
pub mod Struct;
31+
/// Configuration structures and CLI command definitions
32+
pub mod Struct;

0 commit comments

Comments
 (0)