jsglue 0.1.0

A Rust framework for building frontends with JS/TS!
Documentation
#[macro_use]
extern crate anyhow;

#[macro_use]
extern crate cfg_if;

#[macro_use]
extern crate tracing;

#[macro_use]
extern crate lazy_static;

pub extern crate include_dir;

pub mod abort;
pub mod config;
pub mod embedded;
pub mod framework;
pub mod glue;
pub mod handler;
pub mod macros;
pub mod query;
pub mod router;
pub mod runner;
pub mod state;
pub mod util;
pub mod ws;