You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Package `GolangToolKits/grrt` implements a request router and dispatcher for handling incoming requests to their associated handler.
23
25
24
26
The name mux stands for "HTTP request multiplexer". Like the standard `http.ServeMux`, `grrt.Router` matches incoming requests against a list of registered routes and calls a handler for the route that matches the URL. The main features are:
@@ -103,7 +105,50 @@ func main() {
103
105
104
106
## WebExample
105
107
108
+
#### [Web Full Example](https://github.com/GolangToolKits/grrtRouterWebSiteExample)
109
+
106
110
```go
107
-
//Comming soon
111
+
112
+
import (
113
+
"fmt"
114
+
"html/template"
115
+
"net/http"
116
+
"os"
117
+
"strconv"
118
+
119
+
mux "github.com/GolangToolKits/grrt"
120
+
hd "github.com/GolangToolKits/grrtRouterWebSiteExample/handlers"
0 commit comments