mirror of
https://git.freesoftwareextremist.com/bloat
synced 2024-11-09 16:14:11 +00:00
19 lines
211 B
Go
19 lines
211 B
Go
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
|
|
}
|