advotracker: library definition to use as crate
Signed-off-by: Ralf Zerres <ralf.zerres@networkx.de>
This commit is contained in:
36
advotracker/src/lib.rs
Normal file
36
advotracker/src/lib.rs
Normal file
@@ -0,0 +1,36 @@
|
|||||||
|
/*
|
||||||
|
* advotracker - Hotline tackingtool for Advocats
|
||||||
|
*
|
||||||
|
* Copyright 2020 Ralf Zerres <ralf.zerres@networkx.de>
|
||||||
|
* SPDX-License-Identifier: 0BSD, MIT
|
||||||
|
*/
|
||||||
|
|
||||||
|
#![warn(missing_docs, rust_2018_idioms, rust_2018_compatibility)]
|
||||||
|
|
||||||
|
//! advotracker
|
||||||
|
//! Supports lawyers to capture relevant data encountered during an
|
||||||
|
//! online legal advice.
|
||||||
|
//! This is the frontend componet that communicates to the backend `advotrackerd`.
|
||||||
|
//!
|
||||||
|
//! The crate is called `advotracker` and you can depend on it via cargo:
|
||||||
|
//!
|
||||||
|
//! ```ini
|
||||||
|
//! [dependencies]
|
||||||
|
//! advotracker = { version = "~0.1" }
|
||||||
|
//! ```
|
||||||
|
//!
|
||||||
|
//! WIP: provide a workflow image
|
||||||
|
//!
|
||||||
|
|
||||||
|
// /// The client specific services
|
||||||
|
// pub mod clients;
|
||||||
|
|
||||||
|
/// provides data structures and their traits
|
||||||
|
pub mod data;
|
||||||
|
|
||||||
|
/// provides services
|
||||||
|
pub mod services;
|
||||||
|
|
||||||
|
// /// Provide test data
|
||||||
|
// #[cfg!Test]
|
||||||
|
// pub mod data;
|
||||||
@@ -1 +0,0 @@
|
|||||||
/* not implemented */
|
|
||||||
Reference in New Issue
Block a user