You can not select more than 25 topics
Topics must start with a chinese character,a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
- package ioswitch
-
- import (
- "gitlink.org.cn/cloudream/common/pkgs/ioswitch/dag"
- )
-
- func NProps(n *dag.Node) *NodeProps {
- return dag.NProps[*NodeProps](n)
- }
-
- func SProps(str *dag.StreamVar) *VarProps {
- return dag.SProps[*VarProps](str)
- }
-
- func VProps(v *dag.ValueVar) *VarProps {
- return dag.VProps[*VarProps](v)
- }
|