chore: add README and padding
Signed-off-by: jolheiser <john.olheiser@gmail.com>main v0.0.3
parent
41648a142f
commit
7e8761c788
|
@ -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)
|
2
main.go
2
main.go
|
@ -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()
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue