sing/common/const.go
2022-05-09 17:00:07 +08:00

11 lines
155 B
Go

package common
type DummyAddr struct{}
func (d *DummyAddr) Network() string {
return "dummy"
}
func (d *DummyAddr) String() string {
return "dummy"
}