mirror of
https://github.com/ScuroNeko/mtg.git
synced 2026-08-31 23:04:02 +03:00
FILE / ScuroNeko/mtg
mtglib/internal/dc/addr.go
Исходный файл и его история в репозитории.
11 lines
118 B
Go
11 lines
118 B
Go
package dc
|
|
|
|
type Addr struct {
|
|
Network string
|
|
Address string
|
|
}
|
|
|
|
func (d Addr) String() string {
|
|
return d.Address
|
|
}
|