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