Skip to content

Commit 17fdef9

Browse files
authored
Merge pull request #73 from swordqiu/hotfix/qj-add-instant-app-manager
fix: add instant_app manager
2 parents c1a5382 + 4908436 commit 17fdef9

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.21</version>
7+
<version>3.2.22</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 InstantAppManager extends CloudphoneManager {
9+
10+
public InstantAppManager() {
11+
this(EndpointType.InternalURL);
12+
}
13+
14+
public InstantAppManager(EndpointType endpointType) {
15+
super(
16+
"instant_app",
17+
"instant_apps",
18+
endpointType,
19+
new String[]{
20+
},
21+
new String[]{
22+
});
23+
}
24+
25+
}

0 commit comments

Comments
 (0)