1
0
mirror of https://github.com/hybridgroup/gobot.git synced 2025-04-27 13:48:56 +08:00
2013-10-26 15:00:41 -07:00

14 lines
163 B
Go

package gobot
type Port struct {
Name string
}
func (Port) NewPort(p string) *Port{
return new(Port)
}
func (p *Port) ToString() string {
return p.Name
}