17 lines
513 B
Go
17 lines
513 B
Go
package config
|
|
|
|
// AppConfig Contient toute la configuration du server
|
|
type AppConfig struct {
|
|
// 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 Domain du StoreBackEnd
|
|
Domain string `json:"domain"`
|
|
|
|
// unicastPort Contient le port unicast auquel le FileFrontEnd se connecte
|
|
UnicastPort int `json:"unicastPort"`
|
|
}
|