Documentation ¶
Index ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type Browser ¶
type Browser struct {
// contains filtered or unexported fields
}
func NewBrowser ¶
func NewBrowser(cfg *BrowserConfig) *Browser
type BrowserConfig ¶
type CookieStore ¶
type CookieStore interface { GetCookie(context.Context) (string, error) SetCookie(context.Context, string) error }
func NewCookieStore ¶
func NewCookieStore(path string) CookieStore
type Post ¶
type Post struct { ID string `json:"id"` Text string `json:"text"` Time time.Time `json:"time"` UserID string `json:"user_id"` UserName string `json:"user_name"` UserFollowers int `json:"user_followers"` Comments int `json:"comments"` Retweets int `json:"retweets"` Likes int `json:"likes"` Views int `json:"views"` }
Click to show internal directories.
Click to hide internal directories.