package
0.0.0-20230427205542-86833b7e4cc0
Repository: https://github.com/cloudykit/framework.git
Documentation: pkg.go.dev

# Functions

GenQS generates a url + query string ex: GenQS(nil,"http://google.com/")("q","cats") => Generates http://google.com/?q=cats or use with GenQS("app.ProductController.ActionHandler","urlParam")("page",5).
GenURL generates an URL with the URLGen available in the scope.
Gets an URL generator from the scope.
NewBaseURL creates a new BaseURL, see type BaseURL func(...interface{}) string.

# Variables

No description provided by the author

# Interfaces

URLGen url generator.

# Type aliases

BaseURL holds an base url, invoking this func will return the base url with query string, ex: NewBaseURL("/search")("q", "my search input","page",5) will result in /search?q=my search input&page=5.