blob: 0ca4618430dd62c7bd51f147d883d90eb210697f (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
|
#![no_main]
use wrapper_macro::make_wrapper;
use sp1_zkvm::io::read;
use sp1_zkvm::lib::io::commit;
use std::collections::*;
sp1_zkvm::entrypoint!(main);
pub fn main() {
zkp::entrypoint_expr!()
}
|