File tree Expand file tree Collapse file tree 2 files changed +26
-1
lines changed
src/main/java/com/yunionyun/mcp/mcclient/managers/impl/cloudphone Expand file tree Collapse file tree 2 files changed +26
-1
lines changed Original file line number Diff line number Diff line change 44
55 <groupId >com.yunionyun.mcp</groupId >
66 <artifactId >mcclient</artifactId >
7- <version >3.2.20 </version >
7+ <version >3.2.21 </version >
88 <packaging >jar</packaging >
99
1010 <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 PhoneAppManager extends CloudphoneManager {
9+
10+ public PhoneAppManager () {
11+ this (EndpointType .InternalURL );
12+ }
13+
14+ public PhoneAppManager (EndpointType endpointType ) {
15+ super (
16+ "phone_app" ,
17+ "phone_apps" ,
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