1
0
mirror of https://gitlab.com/comunic/comunicapiv3 synced 2025-09-25 22:29:45 +00:00

Ready to implement new method

This commit is contained in:
2020-06-01 17:17:18 +02:00
parent faa31f599a
commit e52e86fc43
3 changed files with 18 additions and 2 deletions

View File

@@ -0,0 +1,11 @@
//! # Virtual directory controller
//!
//! @author Pierre Hubert
use crate::data::http_request_handler::HttpRequestHandler;
use crate::controllers::routes::RequestResult;
/// Find a user by its virtual directory
pub fn find_user(r: &mut HttpRequestHandler) -> RequestResult {
r.success("implement it")
}