18 lines
367 B
Go
18 lines
367 B
Go
|
package main
|
||
|
|
||
|
import (
|
||
|
"github.com/McKael/madon"
|
||
|
"github.com/dghubble/go-twitter/twitter"
|
||
|
"github.com/turnage/graw/reddit"
|
||
|
"gopkg.in/mxpv/patreon-go.v1"
|
||
|
r "gopkg.in/rethinkdb/rethinkdb-go.v6"
|
||
|
)
|
||
|
|
||
|
type Mi struct {
|
||
|
session *r.Session
|
||
|
mastodonClient *madon.Client
|
||
|
twitterClient *twitter.Client
|
||
|
redditBot reddit.Bot
|
||
|
patreonClient *patreon.Client
|
||
|
}
|