| 65 | } |
| 66 | |
| 67 | @Getter |
| 68 | static class MessageModel { |
| 69 | private final String msgtype = "text"; |
| 70 | private final String title = "BILIBILI-HELPER任务简报"; |
| 71 | private final Text text; |
| 72 | |
| 73 | public MessageModel(String content) { |
| 74 | this.text = new Text(content); |
| 75 | } |
| 76 | } |
| 77 | |
| 78 | @Getter |
| 79 | static class Text { |
nothing calls this directly
no outgoing calls
no test coverage detected
searching dependent graphs…