rename migration folder

This commit is contained in:
2023-01-27 22:18:41 -08:00
parent 30c2739c4c
commit ec13f4416c
9 changed files with 0 additions and 0 deletions

30
gitgraph/bin/cli/cli.go Normal file
View File

@@ -0,0 +1,30 @@
package main
import (
"fmt"
"math/rand"
"time"
"github.com/taigrr/gitgraph/term"
)
func init() {
rand.Seed(time.Now().UnixMilli())
}
func main() {
freq := []int{}
for i := 0; i < 7; i++ {
freq = append(freq, rand.Int())
}
fmt.Println("week:")
term.GetWeekUnicode(freq)
fmt.Println()
fmt.Println()
fmt.Println()
freq = []int{}
for i := 0; i < 365; i++ {
freq = append(freq, rand.Int())
}
fmt.Println("year:")
term.GetYearUnicode(freq)
}