Skip to content

Commit 4018bd4

Browse files
authored
Merge pull request #66 from swordqiu/hotfix/qj-phone-backup
fix: add phone_backups and update version
2 parents 910f06f + 6c50e8d commit 4018bd4

File tree

2 files changed

+26
-1
lines changed

2 files changed

+26
-1
lines changed

pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44

55
<groupId>com.yunionyun.mcp</groupId>
66
<artifactId>mcclient</artifactId>
7-
<version>3.2.18</version>
7+
<version>3.2.19</version>
88
<packaging>jar</packaging>
99

1010
<name>${project.groupId}:${project.artifactId}</name>
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
package com.yunionyun.mcp.mcclient.managers.impl.cloudphone;
2+
3+
import com.yunionyun.mcp.mcclient.EndpointType;
4+
import com.yunionyun.mcp.mcclient.managers.CloudphoneManager;
5+
6+
import java.io.IOException;
7+
8+
public class PhoneBackupManager extends CloudphoneManager {
9+
10+
public PhoneBackupManager() {
11+
this(EndpointType.InternalURL);
12+
}
13+
14+
public PhoneBackupManager(EndpointType endpointType) {
15+
super(
16+
"phone_backup",
17+
"phone_backups",
18+
endpointType,
19+
new String[]{
20+
},
21+
new String[]{
22+
});
23+
}
24+
25+
}

0 commit comments

Comments
 (0)