File tree Expand file tree Collapse file tree 1 file changed +0
-29
lines changed Expand file tree Collapse file tree 1 file changed +0
-29
lines changed Original file line number Diff line number Diff line change @@ -3,7 +3,6 @@ package fuegogin
3
3
import (
4
4
"context"
5
5
"net/http"
6
- "net/url"
7
6
8
7
"github.com/gin-gonic/gin"
9
8
@@ -48,34 +47,6 @@ func (c ginContext[B]) PathParam(name string) string {
48
47
return c .ginCtx .Param (name )
49
48
}
50
49
51
- func (c ginContext [B ]) QueryParam (name string ) string {
52
- return c .ginCtx .Query (name )
53
- }
54
-
55
- func (c ginContext [B ]) QueryParamArr (name string ) []string {
56
- panic ("unimplemented" )
57
- }
58
-
59
- func (c ginContext [B ]) QueryParamBool (name string ) bool {
60
- panic ("unimplemented" )
61
- }
62
-
63
- func (c ginContext [B ]) QueryParamBoolErr (name string ) (bool , error ) {
64
- panic ("unimplemented" )
65
- }
66
-
67
- func (c ginContext [B ]) QueryParamInt (name string ) int {
68
- panic ("unimplemented" )
69
- }
70
-
71
- func (c ginContext [B ]) QueryParamIntErr (name string ) (int , error ) {
72
- panic ("unimplemented" )
73
- }
74
-
75
- func (c ginContext [B ]) QueryParams () url.Values {
76
- return c .ginCtx .Request .URL .Query ()
77
- }
78
-
79
50
func (c ginContext [B ]) MainLang () string {
80
51
panic ("unimplemented" )
81
52
}
You can’t perform that action at this time.
0 commit comments