forked from TrueCloudLab/distribution
Merge errors and urls package into unified v2 package
To provide a single package with v2 API definitions, the locked down portions of the API have been merged into a single package. References to exported items will appear as v2.XXX, indicating their origin. The definitions in this package will soon be locked down for change, acceppting only additions that will not change protocol behavior.
This commit is contained in:
parent
92dca269f0
commit
5abfc91021
7 changed files with 15 additions and 14 deletions
|
@ -1,4 +1,4 @@
|
|||
package errors
|
||||
package v2
|
||||
|
||||
import "net/http"
|
||||
|
9
api/v2/doc.go
Normal file
9
api/v2/doc.go
Normal file
|
@ -0,0 +1,9 @@
|
|||
// Package v2 describes routes, urls and the error codes used in the Docker
|
||||
// Registry JSON HTTP API V2. In addition to declarations, descriptors are
|
||||
// provided for routes and error codes that can be used for implementation and
|
||||
// automatically generating documentation.
|
||||
//
|
||||
// Definitions here are considered to be locked down for the V2 registry api.
|
||||
// Any changes must be considered carefully and should not proceed without a
|
||||
// change proposal in docker core.
|
||||
package v2
|
|
@ -1,12 +1,4 @@
|
|||
// Package errors describes the error codes that may be returned via the
|
||||
// Docker Registry JSON HTTP API V2. In addition to declaractions,
|
||||
// descriptions about the error codes and the conditions causing them are
|
||||
// avialable in detail.
|
||||
//
|
||||
// Error definitions here are considered to be locked down for the V2 registry
|
||||
// api. Any changes must be considered carefully and should not proceed
|
||||
// without a change proposal in docker core.
|
||||
package errors
|
||||
package v2
|
||||
|
||||
import (
|
||||
"fmt"
|
|
@ -1,4 +1,4 @@
|
|||
package errors
|
||||
package v2
|
||||
|
||||
import (
|
||||
"encoding/json"
|
|
@ -1,4 +1,4 @@
|
|||
package urls
|
||||
package v2
|
||||
|
||||
import (
|
||||
"github.com/docker/docker-registry/common"
|
|
@ -1,4 +1,4 @@
|
|||
package urls
|
||||
package v2
|
||||
|
||||
import (
|
||||
"encoding/json"
|
|
@ -1,4 +1,4 @@
|
|||
package urls
|
||||
package v2
|
||||
|
||||
import (
|
||||
"net/http"
|
Loading…
Reference in a new issue