Faygo is a fast and concise Go Web framework that can be used to develop high-performance web app(especially API) with fewer codes. Just define a struct handler, faygo will automatically bind/verify the request parameters and generate the online API doc.
Stars
1.6k
Forks
248
Watchers
1.6k
Open Issues
9
Overall repository health assessment
No package.json found
This might not be a Node.js project
399
commits
19
commits
3
commits
1
commits
1
commits
1
commits
1
commits
1
commits
1
commits
1
commits
apidoc body的example value使用的是结构体的字段名,如UserName,但是实际开发过程中,会存在大家使用json注释的情况,即user_name,目前body里面的example value即使加了json注释也仍然是使用结构体的字段名,实际调试起来还要对example value进行修改,非常不方便,所以这里需要增加一个判断条件,如果存在json注释的话,property的key改为json的值
f57ebdcView on GitHub