mirror of
https://gitea.phreedom.club/localhost_frssoft/bloat.git
synced 2024-11-05 04:29:21 +02:00
14 lines
123 B
Go
14 lines
123 B
Go
package model
|
|
|
|
import (
|
|
"io"
|
|
|
|
"mastodon"
|
|
)
|
|
|
|
type Client struct {
|
|
*mastodon.Client
|
|
Writer io.Writer
|
|
Session Session
|
|
}
|