func FetchId(address string) (int, error)
extracts the numeric ID and converts it to an integer
func FetchLogin(phpSessId *Cookie, email, password string) error
type Cookie struct { Name string Value string }
func GetPhpSessId() (*Cookie, error)
func (*Cookie) CachePath() string
func (c *Cookie) String() string
type Stream struct { Error string Links []struct { MimeType string Url string } NoAccess bool }
func FetchStream(phpSessId *Cookie, id int) (*Stream, error)
must run login first
func (s *Stream) GetDash() (*url.URL, error)