lib/core/
learn.rs

1
2
3#[derive(Debug)]
4pub struct Instruction {
5    pub instruction: String,
6    pub response: String
7}
8