# fasthttp-autoroute **Repository Path**: ecohe/fasthttp-autoroute ## Basic Information - **Project Name**: fasthttp-autoroute - **Description**: Depend on go fasthttp and fasthttp-routing. Route HTTP GET/POST automatically according to your project directory. - **Primary Language**: Go - **License**: BSD-3-Clause - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2021-06-09 - **Last Updated**: 2021-08-31 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # fasthttp-autoroute #### 介绍 Depend on go fasthttp and fasthttp-routing. Route HTTP GET/POST automatically according to your project directory. #### 使用说明 1. Update exec/exec.go with yours, and 'go run exec.go' 2. Import package gencode. Usage: ```go router := routing.New() auto := gencode.Gencode{} auto.RouteAll(router) panic(fasthttp.ListenAndServe(*addr, router.HandleRequest)) ``` 3. See test.go.