Skip to content

Commit

Permalink
fix README url
Browse files Browse the repository at this point in the history
  • Loading branch information
geektutu committed Sep 1, 2019
1 parent 313aec9 commit 1a73f63
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion README.md
Expand Up @@ -10,7 +10,7 @@ Gee 的设计与实现参考了Gin,这个教程可以快速入门:[Go Gin简
- [第二天:上下文设计(Context)](https://geektutu.com/post/gee-day2.html)[Code - Github](day2-context)
- [第三天:Tire树路由(Router)](https://geektutu.com/post/gee-day3.html)[Code - Github](day3-router)
- [第四天:分组控制(Group)](https://geektutu.com/post/gee-day4.html)[Code - Github](day4-group)
- [第五天:中间件(Middleware)]((https://geektutu.com/post/gee-day5.html),[Code - Github](day5-middleware)
- [第五天:中间件(Middleware)](https://geektutu.com/post/gee-day5.html)[Code - Github](day5-middleware)
- 第六天:HTML模板(Template),[Code - Github](day6-template)
- 第七天:错误恢复(Panic Recover),[Code - Github](day7-panic-recover)

Expand Down
2 changes: 1 addition & 1 deletion doc/gee-day5.md
@@ -1,5 +1,5 @@
---
title: Go语言动手写Web框架 - Gee第四天 中间件Middleware
title: Go语言动手写Web框架 - Gee第五天 中间件Middleware
date: 2019-09-01 20:10:10
description: 7天用 Go语言 从零实现Web框架教程(7 days implement golang web framework from scratch tutorial),用 Go语言/golang 动手写Web框架,从零实现一个Web框架,以 Gin 为原型从零设计一个Web框架。本文介绍了如何为Web框架添加中间件的功能(middlewares)。
tags:
Expand Down
2 changes: 1 addition & 1 deletion doc/gee.md
Expand Up @@ -66,6 +66,6 @@ func handler(w http.ResponseWriter, r *http.Request) {
- [第二天:上下文设计(Context)](https://geektutu.com/post/gee-day2.html)[Code - Github](https://github.com/geektutu/7days-golang/tree/master/day2-context)
- [第三天:Tire树路由(Router)](https://geektutu.com/post/gee-day3.html)[Code - Github](https://github.com/geektutu/7days-golang/tree/master/day3-router)
- [第四天:分组控制(Group)](https://geektutu.com/post/gee-day4.html)[Code - Github](https://github.com/geektutu/7days-golang/tree/master/day4-group)
- [第五天:中间件(Middleware)]((https://geektutu.com/post/gee-day5.html),[Code - Github](https://github.com/geektutu/7days-golang/tree/master/day5-middleware)
- [第五天:中间件(Middleware)](https://geektutu.com/post/gee-day5.html)[Code - Github](https://github.com/geektutu/7days-golang/tree/master/day5-middleware)
- 第六天:HTML模板(Template),[Code - Github](https://github.com/geektutu/7days-golang/tree/master/day6-template)
- 第七天:错误恢复(Panic Recover),[Code - Github](https://github.com/geektutu/7days-golang/tree/master/day7-panic-recover)

0 comments on commit 1a73f63

Please sign in to comment.