rhine 0.1.8

code core of Rhine Lab
Documentation
1
2
3
4
5
6
7
8
use once_cell::sync::Lazy;
use crate::prompt::model::Prompts;

pub mod model;
pub mod assembler;
pub mod loader;

pub static PROMPTS: Lazy<Prompts> = Lazy::new(Prompts::init_unchecked);