From 956b3dbf3800497d6c18e0206baca0543963c71e Mon Sep 17 00:00:00 2001 From: Matthias Beyer Date: Thu, 13 Oct 2016 15:13:08 +0200 Subject: [PATCH] Add lib module --- libimagannotation/src/lib.rs | 38 ++++++++++++++++++++++++++++++------ 1 file changed, 32 insertions(+), 6 deletions(-) diff --git a/libimagannotation/src/lib.rs b/libimagannotation/src/lib.rs index cdfbe1aa..90eed07d 100644 --- a/libimagannotation/src/lib.rs +++ b/libimagannotation/src/lib.rs @@ -1,6 +1,32 @@ -#[cfg(test)] -mod tests { - #[test] - fn it_works() { - } -} +// +// imag - the personal information management suite for the commandline +// Copyright (C) 2015, 2016 Matthias Beyer and contributors +// +// This library is free software; you can redistribute it and/or +// modify it under the terms of the GNU Lesser General Public +// License as published by the Free Software Foundation; version +// 2.1 of the License. +// +// This library is distributed in the hope that it will be useful, +// but WITHOUT ANY WARRANTY; without even the implied warranty of +// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU +// Lesser General Public License for more details. +// +// You should have received a copy of the GNU Lesser General Public +// License along with this library; if not, write to the Free Software +// Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA +// + +extern crate uuid; + +#[macro_use] extern crate libimagerror; +#[macro_use] extern crate libimagstore; +extern crate libimaglink; +extern crate libimagutil; + +module_entry_path_mod!("annotation"); + +pub mod annotation; +pub mod error; +pub mod result; +