Add post format selection

This commit is contained in:
r 2019-12-26 11:25:29 +00:00
parent ac4ff88adb
commit 591360f2a8
11 changed files with 66 additions and 15 deletions

View file

@ -1,8 +1,14 @@
package model
type PostFormat struct {
Name string
Type string
}
type PostContext struct {
DefaultVisibility string
ReplyContext *ReplyContext
Formats []PostFormat
}
type ReplyContext struct {