rename gitgraph => graph

This commit is contained in:
2023-01-30 15:07:13 -08:00
parent 02cd017227
commit f2fa0500fb
9 changed files with 7 additions and 7 deletions

View File

@@ -6,7 +6,7 @@ import (
"time" "time"
"github.com/taigrr/gico/commits" "github.com/taigrr/gico/commits"
"github.com/taigrr/gico/gitgraph/term" "github.com/taigrr/gico/graph/term"
) )
func init() { func init() {

View File

@@ -8,7 +8,7 @@ import (
git "github.com/go-git/go-git/v5" git "github.com/go-git/go-git/v5"
"github.com/go-git/go-git/v5/plumbing/object" "github.com/go-git/go-git/v5/plumbing/object"
gterm "github.com/taigrr/gico/gitgraph/term" gterm "github.com/taigrr/gico/graph/term"
"github.com/taigrr/gico/types" "github.com/taigrr/gico/types"
) )

View File

@@ -9,7 +9,7 @@ import (
"github.com/gorilla/mux" "github.com/gorilla/mux"
"github.com/taigrr/gico/commits" "github.com/taigrr/gico/commits"
"github.com/taigrr/gico/gitgraph/svg" "github.com/taigrr/gico/graph/svg"
) )
type DayCount [366]int type DayCount [366]int

View File

@@ -1,4 +1,4 @@
*.svg *.svg
gitgraph graph
bin/cli/cli bin/cli/cli
bin/server/svg-server bin/server/svg-server

View File

@@ -14,7 +14,7 @@ import (
"github.com/srwiley/rasterx" "github.com/srwiley/rasterx"
sc "github.com/taigrr/simplecolorpalettes/simplecolor" sc "github.com/taigrr/simplecolorpalettes/simplecolor"
"github.com/taigrr/gico/gitgraph/common" "github.com/taigrr/gico/graph/common"
) )
var ( var (

View File

@@ -8,7 +8,7 @@ import (
"github.com/muesli/termenv" "github.com/muesli/termenv"
sc "github.com/taigrr/simplecolorpalettes/simplecolor" sc "github.com/taigrr/simplecolorpalettes/simplecolor"
"github.com/taigrr/gico/gitgraph/common" "github.com/taigrr/gico/graph/common"
) )
var ( var (

View File

@@ -3,7 +3,7 @@ package types
import ( import (
"time" "time"
gterm "github.com/taigrr/gico/gitgraph/term" gterm "github.com/taigrr/gico/graph/term"
) )
func NewDataSet() DataSet { func NewDataSet() DataSet {