feagi-api 0.0.12

FEAGI REST API layer with HTTP and ZMQ transport adapters
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
// Copyright 2025 Neuraville Inc.
// SPDX-License-Identifier: Apache-2.0

// Transport adapters for HTTP, ZMQ, and WASM

// http module is always available (for ApiState), but server/router code is conditional
#[cfg(feature = "http")]
pub mod http;
#[cfg(not(feature = "http"))]
pub mod http {
    // Minimal http module for ApiState when http feature is disabled
    pub mod server;
}
#[cfg(not(feature = "http"))]
pub mod wasm;
#[cfg(feature = "zmq")]
pub mod zmq;