No description
Find a file
2024-05-25 16:06:34 +01:00
integration first commit 2024-05-24 12:18:31 +01:00
ok_macros add readme bump version 2024-05-25 16:06:34 +01:00
src first commit 2024-05-24 12:18:31 +01:00
.gitignore first commit 2024-05-24 12:18:31 +01:00
Cargo.lock add readme bump version 2024-05-25 16:06:34 +01:00
Cargo.toml add readme bump version 2024-05-25 16:06:34 +01:00
okstd.png add readme bump version 2024-05-25 16:06:34 +01:00
README.md add readme bump version 2024-05-25 16:06:34 +01:00

okstd

Standards that are OK.

Getting Started

cargo add okstd@0.1.0
use okstd::prelude::*;

Examples

okstd::main

#[okstd::main]
async fn main() {
    something();
}

Experimental Features

okstd::log

#[okstd::log(debug)]
fn something() {
    debug!("Hello, world!");
    println!("Hello, world!");
}