msg => message

This commit is contained in:
folex
2019-08-16 19:47:38 +03:00
parent 0fafa8661b
commit 8ca166aaf8
16 changed files with 64 additions and 68 deletions

View File

@ -6,8 +6,8 @@ pub fn create_scheme() -> AppResult<()> {
Ok(log::info!("creating scheme"))
}
pub fn add_post(msg: String, username: String) -> AppResult<()> {
Ok(log::info!("add post {} {}", msg, username))
pub fn add_post(message: String, username: String) -> AppResult<()> {
Ok(log::info!("add post {} {}", message, username))
}
pub fn get_all_posts() -> AppResult<String> {