Make errors module private.

This commit is contained in:
Isis Lovecruft 2018-12-30 03:41:13 +00:00
parent 6fea2e1ea0
commit e3d7c16aac
No known key found for this signature in database
GPG key ID: AB41313533E8E812

View file

@ -257,10 +257,9 @@ extern crate serde;
mod constants;
mod ed25519;
mod errors;
mod secret;
mod signature;
pub mod errors;
// Export everything public in ed25519.
pub use crate::ed25519::*;