8 lines
194 B
Go
8 lines
194 B
Go
|
package config
|
||
|
|
||
|
type Config struct {
|
||
|
IP string `json:"multicastAddr"`
|
||
|
MulticastInterface string `json:"multicastInterface"`
|
||
|
Port int `json:"MulticastPort"`
|
||
|
}
|