gitlab/api/projects/
pages.rs

1// Licensed under the Apache License, Version 2.0 <LICENSE-APACHE or
2// http://www.apache.org/licenses/LICENSE-2.0> or the MIT license
3// <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your
4// option. This file may not be copied, modified, or distributed
5// except according to those terms.
6
7//! Project Pages API endpoints.
8//!
9//! These endpoints are used for managing Pages.
10
11mod edit;
12mod pages;
13mod unpublish;
14
15pub use self::edit::EditPages;
16pub use self::edit::EditPagesBuilder;
17pub use self::edit::EditPagesBuilderError;
18
19pub use self::pages::Pages;
20pub use self::pages::PagesBuilder;
21pub use self::pages::PagesBuilderError;
22
23pub use self::unpublish::UnpublishPages;
24pub use self::unpublish::UnpublishPagesBuilder;
25pub use self::unpublish::UnpublishPagesBuilderError;