Files
pncdsl/action.script.go
2026-05-25 21:28:17 +02:00

10 lines
180 B
Go

package pncdsl
type Script struct {
Name string
Actions Action
}
func (s Script) GetName() string { return s.Name }
func (s Script) TypeLabel() string { return "script" }