cortex_sources/
lib.rs

1//! Cortex Sources
2//!
3//! This crate provides ready-made source implementations for various data inputs
4//! that can be used with the cortex-ai processing framework.
5
6#![warn(missing_docs)]
7
8pub mod kafka;
9pub mod types;