wit_owo/lib.rs
1#![doc = include_str!("../README.md")]
2#![warn(missing_docs)]
3
4/// Wit.ai Rust SDK
5pub mod api;
6/// Constants and enums used throughout the SDK
7pub mod constants;
8/// Error handling for the SDK
9pub mod error;
10/// Models representing the data structures used in the SDK
11pub mod model;
12/// Utilities for the SDK
13pub mod prelude;
14/// Utilities for the SDK
15pub mod utils;