This commit is contained in:
Anton Fediashov 2021-02-27 11:27:20 +03:00
parent c0c7214939
commit dcc17bf79a
15 changed files with 20 additions and 18 deletions

View File

@ -10,7 +10,7 @@ import (
"net/http" "net/http"
"strconv" "strconv"
"github.com/gin-gonic/gin/internal/bytesconv" "github.com/RadiumByte/gin/internal/bytesconv"
) )
// AuthUserKey is the cookie name for user credential in basic auth. // AuthUserKey is the cookie name for user credential in basic auth.

View File

@ -12,8 +12,8 @@ import (
"strings" "strings"
"time" "time"
"github.com/gin-gonic/gin/internal/bytesconv" "github.com/RadiumByte/gin/internal/bytesconv"
"github.com/gin-gonic/gin/internal/json" "github.com/RadiumByte/gin/internal/json"
) )
var errUnknownType = errors.New("unknown type") var errUnknownType = errors.New("unknown type")

View File

@ -10,7 +10,7 @@ import (
"io" "io"
"net/http" "net/http"
"github.com/gin-gonic/gin/internal/json" "github.com/RadiumByte/gin/internal/json"
) )
// EnableDecoderUseNumber is used to call the UseNumber method on the JSON // EnableDecoderUseNumber is used to call the UseNumber method on the JSON

View File

@ -19,9 +19,9 @@ import (
"sync" "sync"
"time" "time"
"github.com/RadiumByte/gin/binding"
"github.com/RadiumByte/gin/render"
"github.com/gin-contrib/sse" "github.com/gin-contrib/sse"
"github.com/gin-gonic/gin/binding"
"github.com/gin-gonic/gin/render"
) )
// Content-Type MIME of the most common data formats. // Content-Type MIME of the most common data formats.
@ -37,7 +37,7 @@ const (
) )
// BodyBytesKey indicates a default body bytes key. // BodyBytesKey indicates a default body bytes key.
const BodyBytesKey = "_gin-gonic/gin/bodybyteskey" const BodyBytesKey = "_RadiumByte/gin/bodybyteskey"
const abortIndex int8 = math.MaxInt8 / 2 const abortIndex int8 = math.MaxInt8 / 2

View File

@ -7,7 +7,7 @@ package gin
import ( import (
"log" "log"
"github.com/gin-gonic/gin/binding" "github.com/RadiumByte/gin/binding"
) )
// BindWith binds the passed struct pointer using the specified binding engine. // BindWith binds the passed struct pointer using the specified binding engine.

View File

@ -9,7 +9,7 @@ import (
"reflect" "reflect"
"strings" "strings"
"github.com/gin-gonic/gin/internal/json" "github.com/RadiumByte/gin/internal/json"
) )
// ErrorType is an unsigned 64-bit error code as defined in the gin spec. // ErrorType is an unsigned 64-bit error code as defined in the gin spec.

4
gin.go
View File

@ -13,8 +13,8 @@ import (
"path" "path"
"sync" "sync"
"github.com/gin-gonic/gin/internal/bytesconv" "github.com/RadiumByte/gin/internal/bytesconv"
"github.com/gin-gonic/gin/render" "github.com/RadiumByte/gin/render"
) )
const defaultMultipartMemory = 32 << 20 // 32 MB const defaultMultipartMemory = 32 << 20 // 32 MB

View File

@ -9,7 +9,7 @@ import (
"net/http" "net/http"
"sync" "sync"
"github.com/gin-gonic/gin" "github.com/RadiumByte/gin"
) )
var once sync.Once var once sync.Once

1
go.mod
View File

@ -4,6 +4,7 @@ go 1.13
require ( require (
github.com/gin-contrib/sse v0.1.0 github.com/gin-contrib/sse v0.1.0
github.com/RadiumByte/gin v1.6.3
github.com/go-playground/validator/v10 v10.4.1 github.com/go-playground/validator/v10 v10.4.1
github.com/golang/protobuf v1.3.3 github.com/golang/protobuf v1.3.3
github.com/json-iterator/go v1.1.9 github.com/json-iterator/go v1.1.9

1
go.sum
View File

@ -9,6 +9,7 @@ github.com/go-playground/locales v0.13.0 h1:HyWk6mgj5qFqCT5fjGBuRArbVDfE4hi8+e8c
github.com/go-playground/locales v0.13.0/go.mod h1:taPMhCMXrRLJO55olJkUXHZBHCxTMfnGwq/HNwmWNS8= github.com/go-playground/locales v0.13.0/go.mod h1:taPMhCMXrRLJO55olJkUXHZBHCxTMfnGwq/HNwmWNS8=
github.com/go-playground/universal-translator v0.17.0 h1:icxd5fm+REJzpZx7ZfpaD876Lmtgy7VtROAbHHXk8no= github.com/go-playground/universal-translator v0.17.0 h1:icxd5fm+REJzpZx7ZfpaD876Lmtgy7VtROAbHHXk8no=
github.com/go-playground/universal-translator v0.17.0/go.mod h1:UkSxE5sNxxRwHyU+Scu5vgOQjsIJAF8j9muTVoKLVtA= github.com/go-playground/universal-translator v0.17.0/go.mod h1:UkSxE5sNxxRwHyU+Scu5vgOQjsIJAF8j9muTVoKLVtA=
github.com/go-playground/validator/v10 v10.2.0/go.mod h1:uOYAAleCW8F/7oMFd6aG0GOhaH6EGOAJShg8Id5JGkI=
github.com/go-playground/validator/v10 v10.4.1 h1:pH2c5ADXtd66mxoE0Zm9SUhxE20r7aM3F26W0hOn+GE= github.com/go-playground/validator/v10 v10.4.1 h1:pH2c5ADXtd66mxoE0Zm9SUhxE20r7aM3F26W0hOn+GE=
github.com/go-playground/validator/v10 v10.4.1/go.mod h1:nlOn6nFhuKACm19sB/8EGNn9GlaMV7XkbRSipzJ0Ii4= github.com/go-playground/validator/v10 v10.4.1/go.mod h1:nlOn6nFhuKACm19sB/8EGNn9GlaMV7XkbRSipzJ0Ii4=
github.com/golang/protobuf v1.3.3 h1:gyjaxf+svBWX08ZjK86iN9geUJF0H6gp2IRKX6Nf6/I= github.com/golang/protobuf v1.3.3 h1:gyjaxf+svBWX08ZjK86iN9geUJF0H6gp2IRKX6Nf6/I=

View File

@ -8,7 +8,7 @@ import (
"io" "io"
"os" "os"
"github.com/gin-gonic/gin/binding" "github.com/RadiumByte/gin/binding"
) )
// EnvGinMode indicates environment name for gin mode. // EnvGinMode indicates environment name for gin mode.

View File

@ -10,8 +10,8 @@ import (
"html/template" "html/template"
"net/http" "net/http"
"github.com/gin-gonic/gin/internal/bytesconv" "github.com/RadiumByte/gin/internal/bytesconv"
"github.com/gin-gonic/gin/internal/json" "github.com/RadiumByte/gin/internal/json"
) )
// JSON contains the given interface object. // JSON contains the given interface object.

View File

@ -8,7 +8,7 @@ import (
"fmt" "fmt"
"net/http" "net/http"
"github.com/gin-gonic/gin/internal/bytesconv" "github.com/RadiumByte/gin/internal/bytesconv"
) )
// String contains the given interface object slice and its format. // String contains the given interface object slice and its format.

View File

@ -11,7 +11,7 @@ import (
"unicode" "unicode"
"unicode/utf8" "unicode/utf8"
"github.com/gin-gonic/gin/internal/bytesconv" "github.com/RadiumByte/gin/internal/bytesconv"
) )
var ( var (

View File

@ -15,7 +15,7 @@ import (
) )
// BindKey indicates a default bind key. // BindKey indicates a default bind key.
const BindKey = "_gin-gonic/gin/bindkey" const BindKey = "_RadiumByte/gin/bindkey"
// Bind is a helper function for given interface object and returns a Gin middleware. // Bind is a helper function for given interface object and returns a Gin middleware.
func Bind(val interface{}) HandlerFunc { func Bind(val interface{}) HandlerFunc {