| 12345678910111213141516171819202122232425262728293031323334353637 |
- package main
- import (
- "context"
- "hnyfkj.com.cn/rtu/linux/utils/jsonrpc2"
- )
- // 导入用户安装包
- func pkgImport(
- ctx context.Context, req *jsonrpc2.Request) *jsonrpc2.Response {
- return nil
- }
- // 删除用户安装包
- func pkgRemove(
- ctx context.Context, req *jsonrpc2.Request) *jsonrpc2.Response {
- return nil
- }
- // 安装包应用安装
- func appInstall(
- ctx context.Context, req *jsonrpc2.Request) *jsonrpc2.Response {
- return nil
- }
- // 卸载已安装应用
- func appUninstall(
- ctx context.Context, req *jsonrpc2.Request) *jsonrpc2.Response {
- return nil
- }
- // 安装包应用信息
- func getInstallInfo(
- ctx context.Context, req *jsonrpc2.Request) *jsonrpc2.Response {
- return nil
- }
|