You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
kratos/examples/http
haiyux 9662ef3c21
feat:add examples redirect url (#1807)
3 years ago
..
cors fix(examples/cors): method misuse (#1184) 3 years ago
echo fix: examples lint error (#1454) 3 years ago
errors fix: examples lint error (#1454) 3 years ago
gin refactor: move plugins to contrib dir (#1399) 3 years ago
middlewares add router group for http server (#1208) 3 years ago
mux examples: clean examples (#1036) 3 years ago
redirect feat:add examples redirect url (#1807) 3 years ago
static examples: clean examples (#1036) 3 years ago
upload fix: examples lint error (#1454) 3 years ago
README.md make the output of gin example right (#1598) 3 years ago

README.md

Run the examples

gin

1、Compile and execute the server code:

$ go run gin/main.go

2、From a different terminal, access the api to see the output:

$ curl http://127.0.0.1:8000/helloworld/gin
{"welcome":"gin"}

mux

1、Compile and execute the server code:

$ go run mux/main.go

2、From a different terminal, access the api to see the output:

$ curl http://127.0.0.1:8000/home
Hello Gorilla Mux!

static

1、Compile and execute the server code:

$ go run static/main.go

2、Access the following url with your browser:

http://127.0.0.1:8000/assets