ih 0.1.15

interface proto for hpc
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
use aok::{OK, Result};
use ih::State;
use static_init::constructor;
use tracing::info;

#[constructor(0)]
extern "C" fn init() {
  loginit::init()
}

#[test]
fn test() -> Result<()> {
  info!("{}", State::CAPTCHA);
  OK
}