removing dep on go-util from blend

This commit is contained in:
Will Charczuk 2018-04-04 22:06:34 -07:00
parent 11e380634b
commit 7d28470055
4 changed files with 4 additions and 4 deletions

View File

@ -6,9 +6,9 @@ import (
"io" "io"
"math" "math"
util "github.com/blendlabs/go-util"
"github.com/golang/freetype/truetype" "github.com/golang/freetype/truetype"
"github.com/wcharczuk/go-chart/drawing" "github.com/wcharczuk/go-chart/drawing"
"github.com/wcharczuk/go-chart/util"
) )
// PNG returns a new png/raster renderer. // PNG returns a new png/raster renderer.

View File

@ -4,9 +4,9 @@ import (
"fmt" "fmt"
"strings" "strings"
util "github.com/blendlabs/go-util"
"github.com/golang/freetype/truetype" "github.com/golang/freetype/truetype"
"github.com/wcharczuk/go-chart/drawing" "github.com/wcharczuk/go-chart/drawing"
"github.com/wcharczuk/go-chart/util"
) )
const ( const (

View File

@ -1,6 +1,6 @@
package chart package chart
import util "github.com/blendlabs/go-util" import util "github.com/wcharczuk/go-chart/util"
// Value is a chart value. // Value is a chart value.
type Value struct { type Value struct {

View File

@ -9,9 +9,9 @@ import (
"golang.org/x/image/font" "golang.org/x/image/font"
util "github.com/blendlabs/go-util"
"github.com/golang/freetype/truetype" "github.com/golang/freetype/truetype"
"github.com/wcharczuk/go-chart/drawing" "github.com/wcharczuk/go-chart/drawing"
"github.com/wcharczuk/go-chart/util"
) )
// SVG returns a new png/raster renderer. // SVG returns a new png/raster renderer.