mirror of
https://github.com/muesli/mastotool
synced 2024-12-27 18:03:09 +01:00
Add time and URL to search output (#6)
This commit is contained in:
parent
8adb027f55
commit
f92cefd853
@ -5,6 +5,7 @@ import (
|
||||
"fmt"
|
||||
"math"
|
||||
"strings"
|
||||
"time"
|
||||
|
||||
mastodon "github.com/mattn/go-mastodon"
|
||||
"github.com/muesli/goprogressbar"
|
||||
@ -49,6 +50,8 @@ func search(token string) error {
|
||||
for _, s := range statuses {
|
||||
if strings.Contains(strings.ToLower(cleanupContent(s.Content)), token) {
|
||||
fmt.Println("\nFound toot:", cleanupContent(s.Content))
|
||||
fmt.Println("Date:", s.CreatedAt.Format(time.RFC822))
|
||||
fmt.Println("URL:", s.URL)
|
||||
fmt.Println()
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user