Skip to content

Commit

Permalink
Update go-cron dependency
Browse files Browse the repository at this point in the history
  • Loading branch information
yunussandikci authored Jul 14, 2024
1 parent 8083862 commit c9bd57d
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 4 deletions.
6 changes: 3 additions & 3 deletions cmd/benchmark/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -87,7 +87,7 @@ func CreateChart(xAxis []string, yzAxis map[string][]opts.LineData) *charts.Line
line.SetGlobalOptions(charts.WithTitleOpts(opts.Title{
Title: pageTitle,
}), charts.WithLegendOpts(opts.Legend{
Show: true,
Show: opts.Bool(true),
}), charts.WithInitializationOpts(opts.Initialization{
PageTitle: pageTitle,
Width: "1600px",
Expand All @@ -101,10 +101,10 @@ func CreateChart(xAxis []string, yzAxis map[string][]opts.LineData) *charts.Line
Opacity: 0.2,
}),
charts.WithLineChartOpts(opts.LineChart{
Smooth: false,
Smooth: opts.Bool(false),
}),
charts.WithMarkPointStyleOpts(
opts.MarkPointStyle{Label: &opts.Label{Show: true}}),
opts.MarkPointStyle{Label: &opts.Label{Show: opts.Bool(true)}}),
)
}
return line
Expand Down
2 changes: 1 addition & 1 deletion go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ require (
github.com/brianvoe/gofakeit/v6 v6.28.0
github.com/caarlos0/env/v10 v10.0.0
github.com/elliotchance/pie/v2 v2.8.1
github.com/go-co-op/gocron/v2 v2.7.1
github.com/go-co-op/gocron/v2 v2.10.0
github.com/go-echarts/go-echarts/v2 v2.4.0
github.com/go-logr/logr v1.4.2
github.com/pkg/browser v0.0.0-20240102092130-5ac0b6a4141c
Expand Down
2 changes: 2 additions & 0 deletions go.sum
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,8 @@ github.com/fsnotify/fsnotify v1.7.0 h1:8JEhPFa5W2WU7YfeZzPNqzMP6Lwt7L2715Ggo0nos
github.com/fsnotify/fsnotify v1.7.0/go.mod h1:40Bi/Hjc2AVfZrqy+aj+yEI+/bRxZnMJyTJwOpGvigM=
github.com/go-co-op/gocron/v2 v2.7.1 h1:HNHT5WERT4LVzMIqcaQIVrMpNpL6ROK8DiSnATLDxb4=
github.com/go-co-op/gocron/v2 v2.7.1/go.mod h1:xY7bJxGazKam1cz04EebrlP4S9q4iWdiAylMGP3jY9w=
github.com/go-co-op/gocron/v2 v2.10.0 h1:qmyqSBDp1Xi59PKI+venVbwXe9N17gwup/6aXXPFJfg=
github.com/go-co-op/gocron/v2 v2.10.0/go.mod h1:xY7bJxGazKam1cz04EebrlP4S9q4iWdiAylMGP3jY9w=
github.com/go-echarts/go-echarts/v2 v2.4.0 h1:efD46dmAvaZEWrBHAGjE8cfDK48vvFTHz5N9VqW5rYc=
github.com/go-echarts/go-echarts/v2 v2.4.0/go.mod h1:56YlvzhW/a+du15f3S2qUGNDfKnFOeJSThBIrVFHDtI=
github.com/go-logr/logr v1.4.2 h1:6pFjapn8bFcIbiKo3XT4j/BhANplGihG6tvd+8rYgrY=
Expand Down

0 comments on commit c9bd57d

Please sign in to comment.