Documentation ¶
Index ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type EnumRemote ¶ added in v0.0.3
type EnumRemote struct { Type TypeRemote Data unsafe.Pointer }
func (EnumRemote) MarshalJSON ¶ added in v0.0.3
func (remote EnumRemote) MarshalJSON() (buffer []byte, err error)
type EnumScript ¶ added in v0.0.3
type EnumScript struct { Type TypeScript Data unsafe.Pointer }
func (EnumScript) MarshalJSON ¶ added in v0.0.3
func (script EnumScript) MarshalJSON() (buffer []byte, err error)
type ItemRemote ¶ added in v0.0.3
type ItemRemote struct { Item EnumRemote }
func (ItemRemote) MarshalJSON ¶ added in v0.0.3
func (remote ItemRemote) MarshalJSON() (buffer []byte, err error)
func (*ItemRemote) UnmarshalJSON ¶ added in v0.0.3
func (remote *ItemRemote) UnmarshalJSON(buffer []byte) error
func (*ItemRemote) UnmarshalYAML ¶ added in v0.0.3
func (remote *ItemRemote) UnmarshalYAML(node *yaml.Node) error
type ItemScript ¶ added in v0.0.3
type ItemScript struct { Item EnumScript }
func (ItemScript) MarshalJSON ¶ added in v0.0.3
func (script ItemScript) MarshalJSON() (buffer []byte, err error)
func (*ItemScript) UnmarshalJSON ¶ added in v0.0.3
func (script *ItemScript) UnmarshalJSON(buffer []byte) error
func (*ItemScript) UnmarshalYAML ¶ added in v0.0.3
func (script *ItemScript) UnmarshalYAML(node *yaml.Node) error
type Root ¶ added in v0.0.3
type Root struct { Remote []ItemRemote `yaml:"remote" json:"remote"` Script []ItemScript `yaml:"script" json:"script"` }
type TypeRemote ¶ added in v0.0.3
type TypeRemote int
const ( RemoteUnknown TypeRemote = iota RemoteAgent )
type TypeScript ¶ added in v0.0.3
type TypeScript int
const ( ScriptUnknown TypeScript = iota ScriptCopy ScriptMove ScriptExecute )
Click to show internal directories.
Click to hide internal directories.