mirror of
https://github.com/swc-project/swc.git
synced 2024-11-25 22:34:04 +03:00
30bc086052
**Description:** Turbopack does not use `serde` of swc AST types.
10 lines
146 B
Rust
10 lines
146 B
Rust
use swc_common::ast_serde;
|
|
|
|
#[ast_serde]
|
|
pub enum Message {
|
|
#[tag("Request")]
|
|
Request(String),
|
|
#[tag("Response")]
|
|
Response(u8),
|
|
}
|