| 27 | const PENDING_UPDATE_LABEL: &str = "待更新"; |
| 28 | |
| 29 | pub struct PrContext<'a> { |
| 30 | pub issue: &'a Issue, |
| 31 | pub original_ttml: &'a str, |
| 32 | pub generated_ttml: &'a str, |
| 33 | pub metadata: &'a TTMLMetadata, |
| 34 | pub remarks: &'a str, |
| 35 | pub root_path: &'a Path, |
| 36 | pub is_first_time: bool, |
| 37 | } |
| 38 | |
| 39 | pub struct PrUpdateContext<'a> { |
| 40 | pub pr_number: u64, |
nothing calls this directly
no outgoing calls
no test coverage detected