20 lines
606 B
Go
20 lines
606 B
Go
package config
|
|
|
|
// AppConfig Contient toute la configuration du server
|
|
type AppConfig struct {
|
|
// MulticastNetworkInterface
|
|
MulticastNetworkInterface string `json:"multicastNetworkInterface"`
|
|
|
|
// MulticastAddress Contient l'adresse multicast du FileFrontEnd
|
|
MulticastAddress string `json:"multicastAddress"`
|
|
|
|
// MulticastSecond Contient le nombre de seconde entre chaque annonce
|
|
MulticastSecond int `json:"multicastSecond"`
|
|
|
|
// Domain du StoreBackEnd
|
|
Domain string `json:"domain"`
|
|
|
|
// UnicastPort Contient le port unicast auquel le FileFrontEnd se connecte
|
|
UnicastPort int `json:"unicastPort"`
|
|
}
|