aboutsummaryrefslogtreecommitdiffstats
path: root/modules/structs/activitypub.go
diff options
context:
space:
mode:
Diffstat (limited to 'modules/structs/activitypub.go')
-rw-r--r--modules/structs/activitypub.go10
1 files changed, 10 insertions, 0 deletions
diff --git a/modules/structs/activitypub.go b/modules/structs/activitypub.go
new file mode 100644
index 0000000000..86681bf9d7
--- /dev/null
+++ b/modules/structs/activitypub.go
@@ -0,0 +1,10 @@
+// Copyright 2022 The Gitea Authors. All rights reserved.
+// Use of this source code is governed by a MIT-style
+// license that can be found in the LICENSE file.
+
+package structs
+
+// ActivityPub type
+type ActivityPub struct {
+ Context string `json:"@context"`
+}