vibe-ready 0.1.0

This is the project framework for vibe coding, with multiple optional modules, aiming to quickly build vibe coding projects
Documentation
1
2
3
4
5
6
7
8
9
10
pub struct Engine {}
impl Engine {
    pub fn new() -> Engine {
        Engine {}
    }
}

impl Engine {
    pub fn start(&self) {}
}