15 lines
284 B
Go
15 lines
284 B
Go
// Copyright 2022 The Gitea Authors. All rights reserved.
|
|
// SPDX-License-Identifier: MIT
|
|
|
|
package activitypub
|
|
|
|
import (
|
|
"net/http"
|
|
|
|
"gitea.dev/services/context"
|
|
)
|
|
|
|
func NotImplemented(ctx *context.APIContext) {
|
|
http.Error(ctx.Resp, "Not implemented", http.StatusNotImplemented)
|
|
}
|