Documentation ¶
Index ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type GoOSNameVisitor ¶
type GoOSNameVisitor struct{ Name string }
func (*GoOSNameVisitor) VisitDarwin ¶
func (g *GoOSNameVisitor) VisitDarwin()
func (*GoOSNameVisitor) VisitLinux ¶
func (g *GoOSNameVisitor) VisitLinux()
func (*GoOSNameVisitor) VisitWindows ¶
func (g *GoOSNameVisitor) VisitWindows()
type OsType ¶
type OsType interface {
Accept(v OsTypeVisitor)
}
func GetRuntimeOsType ¶
func ParseFromName ¶
type OsTypeVisitor ¶
type OsTypeVisitor interface { VisitWindows() VisitLinux() VisitDarwin() }
Click to show internal directories.
Click to hide internal directories.