sing/common/const.go
2022-02-04 00:11:43 +08:00

14 lines
181 B
Go

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