文件名称:plate:基于应用程序模板的项目文件生成器
文件大小:5KB
文件格式:ZIP
更新时间:2024-08-01 05:55:18
Go
盘子 Plate 允许您从~/.plates文件夹中定义的模板开始快速设置项目文件。 安装 go get github.com/pilu/plate 用法 为 Go hello world 应用程序创建模板: ~/.plates/go-hello-world.plate : {{define "main.go"}} package main import "fmt" func main() { fmt.Println("{{ ask "greeting"}}") } {{end}} {{define "main_test.go"}} package main import "testing" func TestFoo(t *testing.T) { } {{end}} 跑plate . 并选择 go-hello-world 盘子。 Plate 将创建两个文件, main.go和
【文件预览】:
plate-master
----main.go(4KB)
----__test-fixtures__()
--------go.plate(260B)
----LICENSE(1KB)
----main_test.go(2KB)
----README.md(730B)
----Makefile(152B)
----.gitignore(266B)