mirror of
https://github.com/denoland/deno.git
synced 2025-02-08 07:16:56 -05:00
14 lines
321 B
Rust
14 lines
321 B
Rust
![]() |
// Copyright 2018-2025 the Deno authors. MIT license.
|
||
|
|
||
|
#[cfg(not(feature = "disable"))]
|
||
|
pub static CLI_SNAPSHOT: Option<&[u8]> = Some(include_bytes!(concat!(
|
||
|
env!("OUT_DIR"),
|
||
|
"/CLI_SNAPSHOT.bin"
|
||
|
)));
|
||
|
#[cfg(feature = "disable")]
|
||
|
pub static CLI_SNAPSHOT: Option<&[u8]> = None;
|
||
|
|
||
|
mod shared;
|
||
|
|
||
|
pub use shared::TS_VERSION;
|