diff options
author | r <r@freesoftwareextremist.com> | 2020-11-22 17:29:58 +0000 |
---|---|---|
committer | r <r@freesoftwareextremist.com> | 2020-11-22 17:29:58 +0000 |
commit | fa27d9c6eb525b2e55c3faab5dd8a3e0e9658536 (patch) | |
tree | 15561e426c76d5fab44b5e401c2e81b77c0d7553 /model | |
parent | 37b1c750454a780ef31a26d19005e5c94a39ae9b (diff) | |
download | bloat-fa27d9c6eb525b2e55c3faab5dd8a3e0e9658536.tar.gz bloat-fa27d9c6eb525b2e55c3faab5dd8a3e0e9658536.zip |
Refactor things
- Remove separate auth/logging and merge them into transport.go
- Add helper function for http handlers
Diffstat (limited to 'model')
-rw-r--r-- | model/client.go | 19 | ||||
-rw-r--r-- | model/post.go | 1 |
2 files changed, 0 insertions, 20 deletions
diff --git a/model/client.go b/model/client.go deleted file mode 100644 index 931ddaa..0000000 --- a/model/client.go +++ /dev/null @@ -1,19 +0,0 @@ -package model - -import ( - "io" - - "bloat/mastodon" -) - -type ClientCtx struct { - SessionID string - CSRFToken string -} - -type Client struct { - *mastodon.Client - Writer io.Writer - Ctx ClientCtx - Session Session -} diff --git a/model/post.go b/model/post.go index 831f74f..40118ed 100644 --- a/model/post.go +++ b/model/post.go @@ -10,7 +10,6 @@ type PostContext struct { DefaultFormat string ReplyContext *ReplyContext Formats []PostFormat - DarkMode bool } type ReplyContext struct { |