File tree 2 files changed +26
-1
lines changed
src/main/java/com/yunionyun/mcp/mcclient/managers/impl/cloudphone
2 files changed +26
-1
lines changed Original file line number Diff line number Diff line change 4
4
5
5
<groupId >com.yunionyun.mcp</groupId >
6
6
<artifactId >mcclient</artifactId >
7
- <version >3.2.18 </version >
7
+ <version >3.2.19 </version >
8
8
<packaging >jar</packaging >
9
9
10
10
<name >${project.groupId} :${project.artifactId} </name >
Original file line number Diff line number Diff line change
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
+ }
You can’t perform that action at this time.
0 commit comments