未验证 提交 6c382f80 编写于 作者: LinuxSuRen's avatar LinuxSuRen 提交者: GitHub

Add casc and groovyHooks to cwp struct (#47)

上级 e0db9e65
......@@ -22,9 +22,24 @@ type CustomWarPackage struct {
BuildSettings BuildSettings `yaml:"buildSettings"`
War CustomWar `yaml:"war"`
Plugins []Plugin `yaml:"plugins"`
CASC []CASC `yaml:"casc"`
GroovyHooks []Hook `yaml:"groovyHooks"`
}
type CASC struct {
ID string `yaml:"id"`
Type string `yaml:"type"`
Source DirSource `yaml:"source"`
}
type Hook struct {
ID string `yaml:"id"`
Type string `yaml:"type"`
Source DirSource `yaml:"source"`
}
type DirSource struct {
Dir string `yaml:"dir"`
}
type Plugin struct {
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册