aboutsummaryrefslogtreecommitdiff
path: root/model/postContext.go
diff options
context:
space:
mode:
Diffstat (limited to 'model/postContext.go')
-rw-r--r--model/postContext.go19
1 files changed, 0 insertions, 19 deletions
diff --git a/model/postContext.go b/model/postContext.go
deleted file mode 100644
index 58997f7..0000000
--- a/model/postContext.go
+++ /dev/null
@@ -1,19 +0,0 @@
-package model
-
-type PostFormat struct {
- Name string
- Type string
-}
-
-type PostContext struct {
- DefaultVisibility string
- ReplyContext *ReplyContext
- Formats []PostFormat
- DarkMode bool
-}
-
-type ReplyContext struct {
- InReplyToID string
- InReplyToName string
- ReplyContent string
-}