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, http, imports, pack, routing, runner, runtime, runtime_wasmtime, telemetry, verify,
6    watcher,
7};
8
9pub mod desktop {
10    pub use greentic_runner_desktop::*;
11}