Documentation
¶
Index ¶
Constants ¶
This section is empty.
Variables ¶
View Source
var Indent string = " "
Indent 默认缩进为四个空格
Functions ¶
Types ¶
type File ¶
type File struct {
Name string `json:"name"` // 包名
Files map[string]*File `json:"-"` // 包名映射表
Import []string `json:"import"` // 导入的其他包
Models []*Model `json:"models"` // 从包内读取到的结构体模型
}
File 用来保存同一个包内的结构体
Click to show internal directories.
Click to hide internal directories.