10 lines
105 B
Rust
10 lines
105 B
Rust
#[derive(Debug)]
|
|
pub struct Context;
|
|
|
|
impl Context {
|
|
pub fn new() -> Self {
|
|
Context
|
|
}
|
|
}
|
|
|