oris-experience-repo 0.3.0

HTTP API server for Oris Experience Repository
Documentation
//! oris-experience-repo
//!
//! HTTP API server for Oris Experience Repository.
//!
//! Provides a REST API for external agents to query and contribute experiences
//! (genes and capsules) to the Oris experience pool.

pub mod api;
pub mod client;
pub mod error;
pub mod key_service;
pub mod oen;
pub mod server;

pub use client::ExperienceRepoClient;
pub use error::ExperienceRepoError;
pub use key_service::{KeyServiceError, KeyStore};
pub use oen::{OenError, OenVerifier};
pub use server::{ExperienceRepoServer, ServerConfig};