mirror of
https://gitea.phreedom.club/localhost_frssoft/bloat.git
synced 2024-11-05 06:33:01 +00:00
20 lines
211 B
Go
20 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
|
|
}
|