Add lib module
This commit is contained in:
parent
8f4c712cdb
commit
956b3dbf38
1 changed files with 32 additions and 6 deletions
|
@ -1,6 +1,32 @@
|
||||||
#[cfg(test)]
|
//
|
||||||
mod tests {
|
// imag - the personal information management suite for the commandline
|
||||||
#[test]
|
// Copyright (C) 2015, 2016 Matthias Beyer <mail@beyermatthias.de> and contributors
|
||||||
fn it_works() {
|
//
|
||||||
}
|
// 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;
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue