sing/common/const.go
2022-03-22 16:46:31 +08:00

13 lines
179 B
Go

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