xmirror

package
v0.0.0-...-bf43de0 Latest Latest
Warning

This package is not in the latest version of its module.

Go to latest
Published: Apr 1, 2024 License: Apache-2.0 Imports: 6 Imported by: 0

Documentation

Overview

Package xmirror @Link https://gitee.com/linngc/central-mirror @Copyright Copyright (c) 2024 central-mirror CLI @Author linngc @License

Package xmirror @Link https://gitee.com/linngc/central-mirror @Copyright Copyright (c) 2024 central-mirror CLI @Author linngc @License

Package xmirror @Link https://gitee.com/linngc/central-mirror @Copyright Copyright (c) 2024 central-mirror CLI @Author linngc @License

Package xmirror @Link https://gitee.com/linngc/central-mirror @Copyright Copyright (c) 2022 central CLI @Author linngc @License

Package xmirror @Link https://gitee.com/linngc/central-mirror @Copyright Copyright (c) 2024 central-mirror CLI @Author linngc @License

Index

Constants

This section is empty.

Variables

This section is empty.

Functions

This section is empty.

Types

type XAlpineGetConfigReq

type XAlpineGetConfigReq struct {
	g.Meta `path:"/xAlpine/getConfig" method:"GET"  tags:"Alpine仓库管理" summary:"获取配置文件"`
}

type XAlpineGetConfigRes

type XAlpineGetConfigRes struct {
	g.Meta `mime:"text/html" type:"string" example:"<html/>" dc:"Alpine仓库管理"`
	Cfg    *alpine.AlpineConfig `p:"cfg" v:"required" dc:"仓库配置"`
}

type XAlpineGetSyncMirrorsReq

type XAlpineGetSyncMirrorsReq struct {
	g.Meta `path:"/xAlpine/getSyncMirrors" method:"GET"  tags:"Alpine仓库管理" summary:"同步官网数据"`
}

type XAlpineGetSyncMirrorsRes

type XAlpineGetSyncMirrorsRes struct {
	g.Meta `mime:"text/html" type:"string" example:"<html/>" dc:"Alpine仓库管理"`
}

type XAlpinePingsReq

type XAlpinePingsReq struct {
	g.Meta `path:"/xAlpine/pings" method:"GET"  tags:"Alpine仓库管理" summary:"检查网络状态"`
}

type XAlpinePingsRes

type XAlpinePingsRes struct {
	g.Meta `mime:"text/html" type:"string" example:"<html/>" dc:"Alpine仓库管理"`
	Data   []*model.Pings `dc:"数据对象"`
}

type XAlpineSetConfigReq

type XAlpineSetConfigReq struct {
	g.Meta `path:"/xAlpine/setConfig" method:"POST"  tags:"Alpine仓库管理" summary:"设置配置文件"`
	Cfg    *alpine.AlpineConfig `p:"cfg" v:"required" dc:"仓库配置"`
}

type XAlpineSetConfigRes

type XAlpineSetConfigRes struct {
	g.Meta `mime:"text/html" type:"string" example:"<html/>" dc:"Alpine仓库管理"`
	Cfg    *alpine.AlpineConfig `p:"cfg" v:"required" dc:"仓库配置"`
}

type XGolangGetConfigReq

type XGolangGetConfigReq struct {
	g.Meta `path:"/xGolang/getConfig" method:"GET"  tags:"Golang仓库管理" summary:"获取配置文件"`
}

type XGolangGetConfigRes

type XGolangGetConfigRes struct {
	g.Meta `mime:"text/html" type:"string" example:"<html/>" dc:"Golang仓库管理"`
	Cfg    *golang.GolangConfig `p:"cfg" v:"required" dc:"仓库配置"`
}

type XGolangGetRepositoryReq

type XGolangGetRepositoryReq struct {
	g.Meta `path:"/xGolang/getRepository" method:"GET"  tags:"Golang仓库管理" summary:"golang代理仓库"`
}

type XGolangGetRepositoryRes

type XGolangGetRepositoryRes struct {
	g.Meta `mime:"text/html" type:"string" example:"<html/>" dc:"Golang仓库管理"`
}

type XGolangGetStorageReq

type XGolangGetStorageReq struct {
	g.Meta `path:"/xGolang/getStorage" method:"GET"  tags:"Golang仓库管理" summary:"golang代理仓库"`
}

type XGolangGetStorageRes

type XGolangGetStorageRes struct {
	g.Meta `mime:"text/html" type:"string" example:"<html/>" dc:"Golang仓库管理"`
}

type XGolangPingsReq

type XGolangPingsReq struct {
	g.Meta `path:"/xGolang/pings" method:"GET"  tags:"Golang仓库管理" summary:"检查网络状态"`
}

type XGolangPingsRes

type XGolangPingsRes struct {
	g.Meta `mime:"text/html" type:"string" example:"<html/>" dc:"Golang仓库管理"`
	Data   []*model.Pings `dc:"数据对象"`
}

type XGolangSetConfigReq

type XGolangSetConfigReq struct {
	g.Meta `path:"/xGolang/setConfig" method:"POST"  tags:"Golang仓库管理" summary:"设置配置文件"`
	Cfg    *golang.GolangConfig `p:"cfg" v:"required" dc:"仓库配置"`
}

type XGolangSetConfigRes

type XGolangSetConfigRes struct {
	g.Meta `mime:"text/html" type:"string" example:"<html/>" dc:"Golang仓库管理"`
	Cfg    *golang.GolangConfig `p:"cfg" v:"required" dc:"仓库配置"`
}

type XMavenGetConfigReq

type XMavenGetConfigReq struct {
	g.Meta `path:"/xMaven/getConfig" method:"GET"  tags:"Maven仓库管理" summary:"获取配置文件"`
}

type XMavenGetConfigRes

type XMavenGetConfigRes struct {
	g.Meta `mime:"text/html" type:"string" example:"<html/>" dc:"Maven仓库管理"`
	Cfg    *maven.MavenConfig `p:"cfg" v:"required" dc:"获取仓库配置"`
}

type XMavenGetStorageReq

type XMavenGetStorageReq struct {
	g.Meta  `path:"/xMaven/getStorage" method:"GET"  tags:"Maven仓库管理" summary:"代理仓库查询"`
	LibName string `p:"libName" dc:"仓库ID"`
	JarPath string `p:"jarPath" dc:"jar包路径名称"`
}

type XMavenGetStorageRes

type XMavenGetStorageRes struct {
	g.Meta `mime:"text/html" type:"string" example:"<html/>" dc:"代理仓库查询"`
	Files  []string `dc:"文件路径"`
}

type XMavenPingsReq

type XMavenPingsReq struct {
	g.Meta `path:"/xMaven/pings" method:"GET"  tags:"Maven仓库管理" summary:"检查网络状态"`
}

type XMavenPingsRes

type XMavenPingsRes struct {
	g.Meta `mime:"text/html" type:"string" example:"<html/>" dc:"Maven代理仓库"`
	Data   []*model.Pings `dc:"数据对象"`
}

type XMavenSetConfigReq

type XMavenSetConfigReq struct {
	g.Meta `path:"/xMaven/setConfig" method:"POST"  tags:"Maven仓库管理" summary:"设置配置文件"`
	Cfg    *maven.MavenConfig `p:"cfg" v:"required" dc:"仓库配置"`
}

type XMavenSetConfigRes

type XMavenSetConfigRes struct {
	g.Meta `mime:"text/html" type:"string" example:"<html/>" dc:"Maven仓库管理"`
	Cfg    *maven.MavenConfig `p:"cfg" v:"required" dc:"设置配置文件"`
}

type XNpmGetPingReq

type XNpmGetPingReq struct {
	g.Meta `path:"/xNpm/-/ping" method:"GET"  tags:"Npm仓库管理" summary:"Npm代理仓库"`
}

type XNpmGetPingRes

type XNpmGetPingRes struct {
	g.Meta `mime:"text/html" type:"string" example:"<html/>" dc:"Npm代理仓库"`
}

type XNpmGetStorageReq

type XNpmGetStorageReq struct {
	g.Meta `path:"/xNpm/getStorage" method:"GET"  tags:"Npm仓库管理" summary:"npm代理仓库"`
}

type XNpmGetStorageRes

type XNpmGetStorageRes struct {
	g.Meta `mime:"text/html" type:"string" example:"<html/>" dc:"npm代理仓库"`
}

type XPythonGetConfigReq

type XPythonGetConfigReq struct {
	g.Meta `path:"/xPython/getConfig" method:"GET"  tags:"Python仓库管理" summary:"获取配置文件"`
}

type XPythonGetConfigRes

type XPythonGetConfigRes struct {
	g.Meta `mime:"text/html" type:"string" example:"<html/>" dc:"获取配置文件"`
	Cfg    *python.PythonConfig `dc:"数据对象"`
}

type XPythonPingsReq

type XPythonPingsReq struct {
	g.Meta `path:"/xPython/pings" method:"GET"  tags:"Python仓库管理" summary:"检查网络状态"`
}

type XPythonPingsRes

type XPythonPingsRes struct {
	g.Meta `mime:"text/html" type:"string" example:"<html/>" dc:"检查网络状态"`
	Data   []*model.Pings `dc:"数据对象"`
}

type XPythonSetConfigReq

type XPythonSetConfigReq struct {
	g.Meta `path:"/xPython/setConfig" method:"POST"  tags:"Python仓库管理" summary:"设置配置文件"`
	Cfg    *python.PythonConfig `p:"cfg" v:"required" dc:"仓库配置"`
}

type XPythonSetConfigRes

type XPythonSetConfigRes struct {
	g.Meta `mime:"text/html" type:"string" example:"<html/>" dc:"设置配置文件"`
	Cfg    *python.PythonConfig `dc:"数据对象"`
}

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL