go.mod replace won't cut it, converting import paths to own version

This commit is contained in:
Erik Bunn 2022-06-27 15:26:48 +02:00
parent 5bc01e79f3
commit dadc1da765
87 changed files with 103 additions and 103 deletions

View file

@ -5,7 +5,7 @@ package main
import (
"os"
"github.com/wcharczuk/go-chart/v2"
"github.com/ebudan/go-chart/v2"
)
func main() {

View file

@ -5,7 +5,7 @@ package main
import (
"os"
chart "github.com/wcharczuk/go-chart/v2"
chart "github.com/ebudan/go-chart/v2"
)
func main() {

View file

@ -5,7 +5,7 @@ package main
import (
"os"
chart "github.com/wcharczuk/go-chart/v2"
chart "github.com/ebudan/go-chart/v2"
)
func main() {

View file

@ -5,7 +5,7 @@ package main
import (
"os"
"github.com/wcharczuk/go-chart/v2"
"github.com/ebudan/go-chart/v2"
)
func main() {

View file

@ -5,8 +5,8 @@ package main
import (
"os"
"github.com/wcharczuk/go-chart/v2"
"github.com/wcharczuk/go-chart/v2/drawing"
"github.com/ebudan/go-chart/v2"
"github.com/ebudan/go-chart/v2/drawing"
)
func main() {

View file

@ -5,7 +5,7 @@ package main
import (
"os"
"github.com/wcharczuk/go-chart/v2"
"github.com/ebudan/go-chart/v2"
)
func main() {

View file

@ -8,7 +8,7 @@ import (
"os"
"time"
"github.com/wcharczuk/go-chart/v2"
"github.com/ebudan/go-chart/v2"
)
func random(min, max float64) float64 {

View file

@ -5,7 +5,7 @@ import (
"log"
"net/http"
"github.com/wcharczuk/go-chart/v2"
"github.com/ebudan/go-chart/v2"
)
// Note: Additional examples on how to add Stylesheets are in the custom_stylesheets example

View file

@ -6,7 +6,7 @@ import (
"fmt"
"os"
"github.com/wcharczuk/go-chart/v2"
"github.com/ebudan/go-chart/v2"
)
func main() {

View file

@ -5,8 +5,8 @@ package main
import (
"os"
"github.com/wcharczuk/go-chart/v2"
"github.com/wcharczuk/go-chart/v2/drawing"
"github.com/ebudan/go-chart/v2"
"github.com/ebudan/go-chart/v2/drawing"
)
func main() {

View file

@ -5,7 +5,7 @@ package main
import (
"os"
"github.com/wcharczuk/go-chart/v2"
"github.com/ebudan/go-chart/v2"
)
func main() {

View file

@ -5,8 +5,8 @@ package main
import (
"os"
"github.com/wcharczuk/go-chart/v2"
"github.com/wcharczuk/go-chart/v2/drawing"
"github.com/ebudan/go-chart/v2"
"github.com/ebudan/go-chart/v2/drawing"
)
func main() {

View file

@ -5,7 +5,7 @@ import (
"log"
"net/http"
"github.com/wcharczuk/go-chart/v2"
"github.com/ebudan/go-chart/v2"
)
const style = "svg .background { fill: white; }" +

View file

@ -5,7 +5,7 @@ package main
import (
"os"
"github.com/wcharczuk/go-chart/v2"
"github.com/ebudan/go-chart/v2"
)
func main() {

View file

@ -5,7 +5,7 @@ package main
import (
"os"
"github.com/wcharczuk/go-chart/v2"
"github.com/ebudan/go-chart/v2"
)
func main() {

View file

@ -5,7 +5,7 @@ package main
import (
"os"
"github.com/wcharczuk/go-chart/v2"
"github.com/ebudan/go-chart/v2"
)
func main() {

View file

@ -4,7 +4,7 @@ import (
"fmt"
"log"
"github.com/wcharczuk/go-chart/v2"
"github.com/ebudan/go-chart/v2"
)
func main() {

View file

@ -5,7 +5,7 @@ package main
import (
"os"
chart "github.com/wcharczuk/go-chart/v2"
chart "github.com/ebudan/go-chart/v2"
)
func main() {

View file

@ -5,7 +5,7 @@ package main
import (
"os"
"github.com/wcharczuk/go-chart/v2"
"github.com/ebudan/go-chart/v2"
)
func main() {

View file

@ -5,7 +5,7 @@ package main
import (
"os"
chart "github.com/wcharczuk/go-chart/v2"
chart "github.com/ebudan/go-chart/v2"
)
func main() {

View file

@ -5,7 +5,7 @@ package main
import (
"os"
"github.com/wcharczuk/go-chart/v2"
"github.com/ebudan/go-chart/v2"
)
func main() {

View file

@ -5,7 +5,7 @@ package main
import (
"os"
"github.com/wcharczuk/go-chart/v2"
"github.com/ebudan/go-chart/v2"
)
func main() {

View file

@ -5,7 +5,7 @@ package main
import (
"os"
chart "github.com/wcharczuk/go-chart/v2"
chart "github.com/ebudan/go-chart/v2"
)
func main() {

View file

@ -9,7 +9,7 @@ import (
"strconv"
"time"
"github.com/wcharczuk/go-chart/v2"
"github.com/ebudan/go-chart/v2"
)
func main() {

View file

@ -6,7 +6,7 @@ import (
"sync"
"time"
"github.com/wcharczuk/go-chart/v2"
"github.com/ebudan/go-chart/v2"
)
var lock sync.Mutex

View file

@ -6,8 +6,8 @@ import (
_ "net/http/pprof"
"github.com/wcharczuk/go-chart/v2"
"github.com/wcharczuk/go-chart/v2/drawing"
"github.com/ebudan/go-chart/v2"
"github.com/ebudan/go-chart/v2/drawing"
)
func drawChart(res http.ResponseWriter, req *http.Request) {

View file

@ -5,7 +5,7 @@ package main
import (
"os"
"github.com/wcharczuk/go-chart/v2"
"github.com/ebudan/go-chart/v2"
)
func main() {

View file

@ -3,7 +3,7 @@ package main
import (
"os"
"github.com/wcharczuk/go-chart/v2"
"github.com/ebudan/go-chart/v2"
)
func main() {

View file

@ -6,8 +6,8 @@ import (
"os"
"time"
"github.com/wcharczuk/go-chart/v2"
"github.com/wcharczuk/go-chart/v2/drawing"
"github.com/ebudan/go-chart/v2"
"github.com/ebudan/go-chart/v2/drawing"
)
func main() {

View file

@ -5,8 +5,8 @@ package main
import (
"os"
"github.com/wcharczuk/go-chart/v2"
"github.com/wcharczuk/go-chart/v2/drawing"
"github.com/ebudan/go-chart/v2"
"github.com/ebudan/go-chart/v2/drawing"
)
func main() {

View file

@ -4,7 +4,7 @@ import (
"net/http"
"time"
chart "github.com/wcharczuk/go-chart/v2"
chart "github.com/ebudan/go-chart/v2"
)
func drawChart(res http.ResponseWriter, req *http.Request) {

View file

@ -6,7 +6,7 @@ import (
"fmt"
"os"
"github.com/wcharczuk/go-chart/v2"
"github.com/ebudan/go-chart/v2"
)
func main() {

View file

@ -7,7 +7,7 @@ import (
"log"
"os"
"github.com/wcharczuk/go-chart/v2"
"github.com/ebudan/go-chart/v2"
)
func main() {