//! Provides a set of structs representing the PlayOnBSD database items.
//!
//! In particular, this module provides:
//! * A [`Game`] struct representing a game of the PlayOnBSD database
//! * A [`StoreLink`] struct representing each store link (store field in the
//! PlayOnBSD database). Multiple [`StoreLink`]s can be stored in a [`StoreLinks`]
//! collection.
//! * A [`GameStatus`] struct representing the status of a Gamei. The status
//! itself as a [`Status`] enum and the optional associated comment.
//!
pub
pub
pub use Game;
pub use GameStatus;
pub use Status;
pub use Store;
pub use StoreLink;
pub use StoreLinks;