summaryrefslogtreecommitdiffstats
path: root/librepology/src/v1/types/mod.rs
blob: f192c490d8a90ec837e39d89cb630a89bd276a3b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
//! Module containing all _types_ of data for the API implementation
//!
//! Tne types have no functionality themselves but only represent objects which are returned by the´
//! repology API.
//!
//! This top-level module exports all types of the submodules publicly.
//!

mod category;
mod download;
mod effname;
mod license;
mod maintainer;
mod name;
mod package;
mod problem;
mod repo;
mod status;
mod summary;
mod version;
mod www;

pub use category::Category;
pub use download::Download;
pub use effname::EffName;
pub use license::License;
pub use maintainer::Maintainer;
pub use name::Name;
pub use package::Package;
pub use problem::Problem;
pub use repo::Repo;
pub use status::Status;
pub use summary::Summary;
pub use version::Version;
pub use www::Www;