aic_sdk/docs.rs
1//! Long-form documentation.
2
3pub mod examples;
4
5pub mod guide {
6 //! Using the SDK, from loading a model to processing audio.
7 //!
8 #![doc = include_str!("docs/guide.md")]
9}
10
11pub mod linking {
12 //! How the native `libaic` is linked and found.
13 //!
14 #![doc = include_str!("docs/linking.md")]
15}