7 lines
135 B
Rust
7 lines
135 B
Rust
|
pub struct PrHandler {}
|
||
|
impl PrHandler {
|
||
|
pub fn new() -> Option<String> {
|
||
|
Some("Pull Request Handler".to_string())
|
||
|
}
|
||
|
}
|