50 lines
1.6 KiB
Go
50 lines
1.6 KiB
Go
|
// Code generated by ogen, DO NOT EDIT.
|
||
|
|
||
|
package api
|
||
|
|
||
|
import (
|
||
|
"context"
|
||
|
|
||
|
ht "github.com/ogen-go/ogen/http"
|
||
|
)
|
||
|
|
||
|
// UnimplementedHandler is no-op Handler which returns http.ErrNotImplemented.
|
||
|
type UnimplementedHandler struct{}
|
||
|
|
||
|
var _ Handler = UnimplementedHandler{}
|
||
|
|
||
|
// ActionSubmissionReleased implements actionSubmissionReleased operation.
|
||
|
//
|
||
|
// (Internal endpoint) Role Releaser changes status from releasing -> released.
|
||
|
//
|
||
|
// POST /submissions/{SubmissionID}/status/releaser-released
|
||
|
func (UnimplementedHandler) ActionSubmissionReleased(ctx context.Context, params ActionSubmissionReleasedParams) error {
|
||
|
return ht.ErrNotImplemented
|
||
|
}
|
||
|
|
||
|
// ActionSubmissionUploaded implements actionSubmissionUploaded operation.
|
||
|
//
|
||
|
// (Internal endpoint) Role Validator changes status from Uploading -> Uploaded.
|
||
|
//
|
||
|
// POST /submissions/{SubmissionID}/status/validator-uploaded
|
||
|
func (UnimplementedHandler) ActionSubmissionUploaded(ctx context.Context, params ActionSubmissionUploadedParams) error {
|
||
|
return ht.ErrNotImplemented
|
||
|
}
|
||
|
|
||
|
// ActionSubmissionValidated implements actionSubmissionValidated operation.
|
||
|
//
|
||
|
// (Internal endpoint) Role Validator changes status from Validating -> Validated.
|
||
|
//
|
||
|
// POST /submissions/{SubmissionID}/status/validator-validated
|
||
|
func (UnimplementedHandler) ActionSubmissionValidated(ctx context.Context, params ActionSubmissionValidatedParams) error {
|
||
|
return ht.ErrNotImplemented
|
||
|
}
|
||
|
|
||
|
// NewError creates *ErrorStatusCode from error returned by handler.
|
||
|
//
|
||
|
// Used for common default response.
|
||
|
func (UnimplementedHandler) NewError(ctx context.Context, err error) (r *ErrorStatusCode) {
|
||
|
r = new(ErrorStatusCode)
|
||
|
return r
|
||
|
}
|