Skip to content
#

Go

go logo

Go is a programming language built to resemble a simplified version of the C programming language. It compiles at the machine level. Go was created at Google in 2007 by Robert Griesemer, Rob Pike, and Ken Thompson.

Here are 23,182 public repositories matching this topic...

sguillia
sguillia commented Aug 7, 2019

Please take a look at the following code

package main

import (
	"github.com/gin-gonic/gin"
)

func main() {
	r := gin.New()

	r.GET("/ping", func(c *gin.Context) { c.JSON(200, gin.H{}) })

	r.Use(gin.Logger())

	r.GET("/pingx", func(c *gin.Context) { c.JSON(200, gin.H{}) })

	r.Run()
}

And now please take a look at [the documentation for Use()](https://godoc.org/gi

recolic
recolic commented Aug 9, 2019

I'm trying to setup frp server on my vps.

It would be really helpful if frp/README.md contains a Installation section like other open source project does.

The installation guide should mention at least the following:

  1. How to install go dependencies (in one command: go get ./.... Chinese user may have to break the fucking government wall)

  2. How to build the package. Should I use

caddy
minio
iris
BreathYu
BreathYu commented Sep 26, 2018

Hey again Our developers are developed by Aiarron of the frontend developer, Desmond and ZRothschild and Yusn of the backend developer. We have jointly developed the Go Web Iris Chinese community using the go Iris framework.

And for https://docs.iris-go.com/ this document is translated from English to Chinese, and we will also translate other documents and promote it in the go development commu

mattermost-server
mattermod
mattermod commented Dec 10, 2019

In the SidebarChannel component code that handles showing the tutorial tip for the Town Square and Off-Topic channels, there's a call to the openLhs action which is not allowed in React. This triggers a warning.

The openLhs call should be moved to happen after the render.


If you're interested please comment here and come [join our "Contributors" community channel](https://community.m

Created by Robert Griesemer, Rob Pike, Ken Thompson

Released November 10, 2009

Repository
golang/go
Website
golang.org
Wikipedia
Wikipedia

Related Topics

c language
You can’t perform that action at this time.