mirror of
https://github.com/SourceFellows/gobuch.git
synced 2025-08-02 13:02:15 +02:00
initial import
This commit is contained in:
3
microservices/simple-http/go.mod
Normal file
3
microservices/simple-http/go.mod
Normal file
@ -0,0 +1,3 @@
|
||||
module golang.source-fellows.com/samples/simplehttp
|
||||
|
||||
go 1.13
|
12
microservices/simple-http/main.go
Normal file
12
microservices/simple-http/main.go
Normal file
@ -0,0 +1,12 @@
|
||||
package main
|
||||
|
||||
import "net/http"
|
||||
|
||||
func handleHttp(res http.ResponseWriter, req *http.Request) {
|
||||
res.Write([]byte("Hello World"))
|
||||
}
|
||||
|
||||
func main() {
|
||||
http.HandleFunc("/a/", handleHttp)
|
||||
http.ListenAndServe(":8080", nil)
|
||||
}
|
Reference in New Issue
Block a user