sails-cli 1.0.0-beta.3

CLI tools the Sails framework
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
#![no_std]

#[cfg(target_arch = "wasm32")]
pub use ::{{ app_crate_name }}::wasm::*;

#[cfg(not(target_arch = "wasm32"))]
pub use code::WASM_BINARY_OPT as WASM_BINARY;

#[cfg(not(target_arch = "wasm32"))]
mod code {
    include!(concat!(env!("OUT_DIR"), "/wasm_binary.rs"));
}