gazetta_model_ext/lib.rs
1//  Copyright (C) 2015 Steven Allen
2//
3//  This file is part of gazetta.
4//
5//  This program is free software: you can redistribute it and/or modify it under the terms of the
6//  GNU General Public License as published by the Free Software Foundation version 3 of the
7//  License.
8//
9//  This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY;
10//  without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See
11//  the GNU General Public License for more details.
12//
13//  You should have received a copy of the GNU General Public License along with this program.  If
14//  not, see <http://www.gnu.org/licenses/>.
15//
16
17#![allow(clippy::redundant_field_names)]
18
19mod link;
20mod meta;
21mod person;
22mod yaml;
23
24pub use crate::link::Link;
25pub use crate::meta::{EntryMeta, SourceMeta};
26pub use crate::person::{Key, Person};