1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
#![type_length_limit = "1324680"]

#[cfg(feature = "k8")]
pub mod k8;
pub mod cli;
pub mod core;
pub mod config;
pub mod stores;
mod init;
mod error;
mod services;
mod controllers;

pub use init::start_main_loop;

pub mod dispatcher {
    pub use fluvio_stream_dispatcher::*;
}