From 6013177bfc5b3f3ee6b97abe36900fb22e8632e6 Mon Sep 17 00:00:00 2001 From: Matthias Beyer Date: Tue, 25 Jun 2019 18:55:52 +0200 Subject: Add minimal required interfaces --- src/lib.rs | 16 +++++++++------- 1 file changed, 9 insertions(+), 7 deletions(-) (limited to 'src/lib.rs') diff --git a/src/lib.rs b/src/lib.rs index 31e1bb2..bda0996 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -1,7 +1,9 @@ -#[cfg(test)] -mod tests { - #[test] - fn it_works() { - assert_eq!(2 + 2, 4); - } -} +// +// This Source Code Form is subject to the terms of the Mozilla Public +// License, v. 2.0. If a copy of the MPL was not distributed with this +// file, You can obtain one at http://mozilla.org/MPL/2.0/. +// + +pub mod id; +pub mod node; +pub mod repository; -- cgit v1.2.3