remove unused push/pull params (#650)
This commit is contained in:
parent
c0b1bf7537
commit
a1b2d95f96
2 changed files with 0 additions and 8 deletions
|
@ -81,8 +81,6 @@ type CopyRequest struct {
|
|||
type PullRequest struct {
|
||||
Name string `json:"name"`
|
||||
Insecure bool `json:"insecure,omitempty"`
|
||||
Username string `json:"username"`
|
||||
Password string `json:"password"`
|
||||
}
|
||||
|
||||
type ProgressResponse struct {
|
||||
|
@ -95,8 +93,6 @@ type ProgressResponse struct {
|
|||
type PushRequest struct {
|
||||
Name string `json:"name"`
|
||||
Insecure bool `json:"insecure,omitempty"`
|
||||
Username string `json:"username"`
|
||||
Password string `json:"password"`
|
||||
}
|
||||
|
||||
type ListResponse struct {
|
||||
|
|
|
@ -292,8 +292,6 @@ func PullModelHandler(c *gin.Context) {
|
|||
|
||||
regOpts := &RegistryOptions{
|
||||
Insecure: req.Insecure,
|
||||
Username: req.Username,
|
||||
Password: req.Password,
|
||||
}
|
||||
|
||||
ctx, cancel := context.WithCancel(c.Request.Context())
|
||||
|
@ -323,8 +321,6 @@ func PushModelHandler(c *gin.Context) {
|
|||
|
||||
regOpts := &RegistryOptions{
|
||||
Insecure: req.Insecure,
|
||||
Username: req.Username,
|
||||
Password: req.Password,
|
||||
}
|
||||
|
||||
ctx := context.Background()
|
||||
|
|
Loading…
Reference in a new issue