Files
inkwell/action.script.go
T
2026-07-30 12:16:39 +02:00

10 lines
181 B
Go

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