Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Develope #32

Closed
wants to merge 10 commits into from
4 changes: 2 additions & 2 deletions internal/concat/concat.go
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,8 @@ import "strings"

func String(strs ...string) string {
var sb strings.Builder
for _, str := range strs {
sb.WriteString(str)
for i := 0; i < len(strs); i++ {
sb.WriteString(strs[i])
}
return sb.String()
}
1 change: 0 additions & 1 deletion quicktest.go
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,6 @@ func RandomInt(min, max int) (int, error) {
// Required Params: Method (GET, POST, PUT, DELETE...), URI (only the path. Example: /test/:myParam)
// Optional Param: Body (If you don't want to define one, just ignore)
func (q Quick) QuickTest(method, URI string, headers map[string]string, body ...[]byte) (QuickTestReturn, error) {

//rand.Seed(time.Now().UnixNano())
min := 3000
max := 9999
Expand Down