2022-06-19 00:25:12 -05:00
|
|
|
// Copyright 2022 The Gitea Authors. All rights reserved.
|
2022-11-27 13:20:29 -05:00
|
|
|
// SPDX-License-Identifier: MIT
|
2022-06-19 00:25:12 -05:00
|
|
|
|
|
|
|
|
package structs
|
|
|
|
|
|
|
|
|
|
// ActivityPub type
|
|
|
|
|
type ActivityPub struct {
|
2025-09-06 09:52:41 -07:00
|
|
|
// Context defines the JSON-LD context for ActivityPub
|
2022-06-19 00:25:12 -05:00
|
|
|
Context string `json:"@context"`
|
|
|
|
|
}
|