First pass of checkmate schema

This commit is contained in:
Ayaz Hafiz 2023-07-15 23:26:19 -05:00
parent 93513cffae
commit 40223a697d
No known key found for this signature in database
GPG key ID: 0E2A37416A25EF58
6 changed files with 515 additions and 0 deletions

View file

@ -0,0 +1,7 @@
mod convert;
mod schema;
pub fn is_checkmate_enabled() -> bool {
let flag = std::env::var("ROC_CHECKMATE");
flag.as_deref() == Ok("1")
}