11 Star 11 Fork 0

Gitee 极速下载/goa

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
此仓库是为了提升国内下载速度的镜像仓库,每日同步一次。 原始仓库: https://github.com/goadesign/goa
克隆/下载
header.go 1.09 KB
一键复制 编辑 原始数据 按行查看 历史
package codegen
import (
"goa.design/goa/pkg"
)
// Header returns a Go source file header section template.
func Header(title, pack string, imports []*ImportSpec) *SectionTemplate {
return &SectionTemplate{
Name: "source-header",
Source: headerT,
Data: map[string]interface{}{
"Title": title,
"ToolVersion": pkg.Version(),
"Pkg": pack,
"Imports": imports,
},
}
}
// AddImport adds imports to a section template that was generated with
// Header.
func AddImport(section *SectionTemplate, imprts ...*ImportSpec) {
if len(imprts) == 0 {
return
}
var specs []*ImportSpec
if data, ok := section.Data.(map[string]interface{}); ok {
if imports, ok := data["Imports"]; ok {
specs = imports.([]*ImportSpec)
}
data["Imports"] = append(specs, imprts...)
}
}
const (
headerT = `{{if .Title}}// Code generated by goa {{.ToolVersion}}, DO NOT EDIT.
//
// {{.Title}}
//
// Command:
{{comment commandLine}}
{{end}}package {{.Pkg}}
{{if .Imports}}import {{if gt (len .Imports) 1}}(
{{end}}{{range .Imports}} {{.Code}}
{{end}}{{if gt (len .Imports) 1}})
{{end}}
{{end}}`
)
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/mirrors/goa.git
git@gitee.com:mirrors/goa.git
mirrors
goa
goa
v2.2.2

搜索帮助