1pub mod errors;
2pub mod keys;
3pub mod scalar;
4pub mod tags;
5
6use bitcoin::{key::Secp256k1, secp256k1::All};
7
8pub struct MuSig2<'a> {
9 secp: &'a Secp256k1<All>,
10}
11
12impl<'a> MuSig2<'a> {
13 pub fn new(secp: &'a Secp256k1<All>) -> Self {
14 Self { secp }
15 }
16}