diff options
author | r <r@freesoftwareextremist.com> | 2019-12-21 08:36:44 +0000 |
---|---|---|
committer | r <r@freesoftwareextremist.com> | 2019-12-21 08:38:42 +0000 |
commit | 39c57a6b653a269668f459414d295e812f3628a8 (patch) | |
tree | 3b00e5ec638f592699d31562675b1b1e2d5da8c7 /model | |
parent | df875381d4e2c9a0bd283acc3592cde6562f5e5e (diff) | |
download | bloat-39c57a6b653a269668f459414d295e812f3628a8.tar.gz bloat-39c57a6b653a269668f459414d295e812f3628a8.zip |
Use a single form for new posts and replies
Diffstat (limited to 'model')
-rw-r--r-- | model/replyContext.go | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/model/replyContext.go b/model/replyContext.go new file mode 100644 index 0000000..b17aacb --- /dev/null +++ b/model/replyContext.go @@ -0,0 +1,7 @@ +package model + +type ReplyContext struct { + InReplyToID string + InReplyToName string + ReplyContent string +} |