mirror of
https://git.freesoftwareextremist.com/bloat
synced 2024-11-09 16:14:11 +00:00
13 lines
123 B
Go
13 lines
123 B
Go
package model
|
|
|
|
import (
|
|
"io"
|
|
|
|
"mastodon"
|
|
)
|
|
|
|
type Client struct {
|
|
*mastodon.Client
|
|
Writer io.Writer
|
|
Session Session
|
|
}
|