rename src/api to src/api_schema

This commit is contained in:
Dietmar Maurer
2019-02-17 09:59:20 +01:00
parent 5ddf8cb10a
commit dc9a007b11
35 changed files with 72 additions and 74 deletions

View File

@ -4,26 +4,8 @@ pub mod buildcfg;
#[macro_use]
pub mod tools;
/// API definition helper
///
/// This module contains helper classes to define REST APIs. Method
/// parameters and return types are described using a
/// [Schema](schema/enum.Schema.html).
///
/// The [Router](router/struct.Router.html) is used to define a
/// hierarchy of API entries, and provides ways to find an API
/// definition by path.
#[macro_use]
pub mod api {
#[macro_use]
pub mod schema;
pub mod registry;
#[macro_use]
pub mod router;
pub mod config;
}
pub mod api_schema;
#[macro_use]
pub mod server {