advotracker: library definition to use as crate

Signed-off-by: Ralf Zerres <ralf.zerres@networkx.de>
This commit is contained in:
2020-06-29 01:14:55 +02:00
parent 84e7a86bb3
commit 5016cb6b47
2 changed files with 36 additions and 1 deletions

36
advotracker/src/lib.rs Normal file
View 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;

View File

@@ -1 +0,0 @@
/* not implemented */