update go mod (#334)

This commit is contained in:
Asim Aslam
2021-12-16 12:31:04 +00:00
committed by GitHub
parent f9e539ad88
commit 527dcc12c3
16 changed files with 164 additions and 165 deletions

View File

@@ -3,8 +3,8 @@ package handler
import (
"context"
me "github.com/micro/micro/v3/service/errors"
"github.com/micro/micro/v3/service/config"
me "github.com/micro/micro/v3/service/errors"
"github.com/micro/micro/v3/service/logger"
"github.com/pkg/errors"
"golang.org/x/text/language"
@@ -17,7 +17,7 @@ import (
type translation struct {
ApiKey string
Limit int
Limit int
}
func NewTranslation() *translation {
@@ -39,7 +39,7 @@ func NewTranslation() *translation {
return &translation{
ApiKey: key,
Limit: limit,
Limit: limit,
}
}