| Crates.io | alive_api |
| lib.rs | alive_api |
| version | 0.1.6 |
| created_at | 2024-04-09 02:43:12.145009+00 |
| updated_at | 2024-04-11 06:49:28.127041+00 |
| description | alive_api |
| homepage | https://atomgit.com/i18n/alive/tree/dev/alive_api |
| repository | https://atomgit.com/i18n/alive.git |
| max_upload_size | |
| id | 1201686 |
| size | 4,919 |
use aok::{Result, OK};
use static_init::constructor;
use tracing::info;
#[constructor(0)]
extern "C" fn init() {
loginit::init()
}
#[tokio::test]
async fn test() -> Result<()> {
info!("{}", 123456);
OK
}