traduora 0.4.0

REST API bindings for Traduora, an open-source translation management platform
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
//! Contains all project-related endpoints under path `/api/v1/projects`.

mod common;
mod create;
mod delete;
mod edit;
mod list;
mod show;

pub use common::*;
pub use create::CreateProject;
pub use delete::DeleteProject;
pub use edit::EditProject;
pub use list::Projects;
pub use show::ShowProject;