greentic_runner/
lib.rs

1#![forbid(unsafe_code)]
2
3pub use greentic_runner_host::{
4    self as host, Activity, ActivityKind, HostBuilder, HostServer, RunnerHost, TenantHandle,
5    config, imports, pack, runner, runtime_wasmtime, telemetry, verify,
6};
7
8#[cfg(feature = "new-runner")]
9pub mod glue;
10
11#[cfg(feature = "new-runner")]
12pub mod newrunner;
13
14pub mod desktop;