Turn mpc into library.

This commit is contained in:
Sean Bowe 2016-08-02 10:13:13 -06:00
parent 8cbfc98977
commit 104c624271
No known key found for this signature in database
GPG Key ID: 95684257D8F8B031
1 changed files with 1 additions and 5 deletions

View File

@ -4,8 +4,4 @@ extern crate lazy_static;
mod curve; mod curve;
use curve::*; pub use self::curve::{G1, G2, Gt, Fr, pairing, initialize};
fn main() {
initialize();
}