mirror of
https://github.com/taigrr/gico.git
synced 2026-04-02 03:09:07 -07:00
rename gitgraph => graph
This commit is contained in:
@@ -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() {
|
||||||
|
|||||||
@@ -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"
|
||||||
)
|
)
|
||||||
|
|||||||
@@ -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
|
||||||
|
|||||||
2
gitgraph/.gitignore → graph/.gitignore
vendored
2
gitgraph/.gitignore → graph/.gitignore
vendored
@@ -1,4 +1,4 @@
|
|||||||
*.svg
|
*.svg
|
||||||
gitgraph
|
graph
|
||||||
bin/cli/cli
|
bin/cli/cli
|
||||||
bin/server/svg-server
|
bin/server/svg-server
|
||||||
@@ -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 (
|
||||||
@@ -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 (
|
||||||
@@ -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 {
|
||||||
|
|||||||
Reference in New Issue
Block a user