-
Notifications
You must be signed in to change notification settings - Fork 284
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #1396 from gofr-dev/release/v1.31.0
Release/v1.31.0
- Loading branch information
Showing
127 changed files
with
4,246 additions
and
865 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -76,13 +76,13 @@ package main | |
import "gofr.dev/pkg/gofr" | ||
|
||
func main() { | ||
app := gofr.New() | ||
app := gofr.New() | ||
|
||
app.GET("/greet", func(ctx *gofr.Context) (interface{}, error) { | ||
return "Hello World!", nil | ||
}) | ||
app.GET("/greet", func(ctx *gofr.Context) (interface{}, error) { | ||
return "Hello World!", nil | ||
}) | ||
|
||
app.Run() // listens and serves on localhost:8000 | ||
app.Run() // listens and serves on localhost:8000 | ||
} | ||
``` | ||
|
||
|
@@ -119,6 +119,18 @@ Help us make GoFr even better: | |
|
||
--- | ||
|
||
## 🔒 **Secure Cloning** | ||
To securely clone the GoFr repository, you can use HTTPS or SSH: | ||
|
||
### Cloning with HTTPS | ||
```bash | ||
git clone https://github.com/gofr-dev/gofr.git | ||
``` | ||
### Cloning with SSH | ||
```bash | ||
git clone [email protected]:gofr-dev/gofr.git | ||
``` | ||
|
||
### 🎁 **Get a GoFr T-Shirt & Stickers!** | ||
|
||
If your PR is merged, or if you contribute by writing articles or promoting GoFr, we invite you to fill out [this form](https://forms.gle/R1Yz7ZzY3U5WWTgy5) to claim your GoFr merchandise as a token of our appreciation! | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.