Fix sections "Directory structure" and "Framework design" in 13.1.md

This commit is contained in:
Anchor
2015-01-13 16:19:59 -08:00
parent f98418b25d
commit a94cbc036e

View File

@@ -37,7 +37,7 @@ Figure 13.3 framework data flow
## Directory structure
According to the above application process design, blog design the directory structure is as follows:
According to the framework flow we've designed above, our blog project's directory structure should look something like the following:
|——main.go import documents
|——conf configuration files and processing module
@@ -47,9 +47,9 @@ According to the above application process design, blog design the directory str
|——static static file directory
|——views view gallery
## Frame design
## Framework design
In order to achieve a quick blog to build, based on the above process design intends to develop a minimization framework, which includes routing capabilities, support for REST controllers, automated template rendering, log system, configuration management, and so on.
In order to quickly build our blog, we need to develop a minimal framework based on the application we've designed above. The framework should include routing capabilities, support for RESTful controllers, automated template rendering, a logging system, configuration management, and more.
## Summary