Compare commits

...

1 Commits
v0.0.2 ... main

Author SHA1 Message Date
jolheiser 7e8761c788
chore: add README and padding
ci/woodpecker/push/goreleaser Pipeline was successful Details
ci/woodpecker/tag/goreleaser Pipeline was successful Details
Signed-off-by: jolheiser <john.olheiser@gmail.com>
2022-10-28 22:31:42 -05:00
2 changed files with 11 additions and 0 deletions

9
README.md 100644
View File

@ -0,0 +1,9 @@
# trending
Get a quick view of trending GitHub repositories.
By default it aggregates and dedupes Go and Rust for daily, weekly, and monthly trending.
## License
[MIT](LICENSE)

View File

@ -2,6 +2,7 @@ package main
import ( import (
"flag" "flag"
"fmt"
"os" "os"
"github.com/caarlos0/log" "github.com/caarlos0/log"
@ -44,6 +45,7 @@ func main() {
log.Info(repo.Description) log.Info(repo.Description)
log.DecreasePadding() log.DecreasePadding()
} }
fmt.Println()
} }
log.ResetPadding() log.ResetPadding()
} }