18 lines
360 B
Go
Raw Normal View History

2021-11-06 14:55:15 -07:00
package scraper
func TimestampToDateString(timestamp int) string {
2022-03-13 17:09:43 -07:00
panic("???") // TODO
2021-11-06 14:55:15 -07:00
}
/**
* TODO: Search modes:
* - regular ("top")
* - latest / "live"
* - search for users
* - photos
* - videos
*/
func Search(query string, min_results int) (trove TweetTrove, err error) {
return the_api.GetPaginatedQuery(PaginatedSearch{query}, min_results)
2021-11-06 14:55:15 -07:00
}