ferro/src/pr_handler.rs

7 lines
135 B
Rust
Raw Normal View History

2025-01-05 16:12:25 +00:00
pub struct PrHandler {}
impl PrHandler {
pub fn new() -> Option<String> {
Some("Pull Request Handler".to_string())
}
}