Skip to content

Commit

Permalink
Update lib.rs
Browse files Browse the repository at this point in the history
  • Loading branch information
0xIchigo committed Apr 17, 2024
1 parent c665453 commit dbfcf00
Showing 1 changed file with 8 additions and 13 deletions.
21 changes: 8 additions & 13 deletions src/lib.rs
Original file line number Diff line number Diff line change
@@ -1,14 +1,9 @@
pub fn add(left: usize, right: usize) -> usize {
left + right
}
mod client;
mod config;
mod das_api;
mod mint_api;
mod webhook;
mod rpc;
mod utils;

#[cfg(test)]
mod tests {
use super::*;

#[test]
fn it_works() {
let result = add(2, 2);
assert_eq!(result, 4);
}
}
pub use client::Helius;

0 comments on commit dbfcf00

Please sign in to comment.