2022-02-22 11:02:45 +01:00
|
|
|
package config
|
|
|
|
|
|
|
|
// AppConfig Contient toute la configuration du server
|
|
|
|
type AppConfig struct {
|
2022-02-26 18:08:52 +01:00
|
|
|
// multicastAddress Contient l'adresse multicast du FileFrontEnd
|
2022-02-22 13:05:33 +01:00
|
|
|
MulticastAddress string `json:"multicastAddress"`
|
2022-02-22 11:02:45 +01:00
|
|
|
|
|
|
|
// multicastSecond Contient le nombre de seconde entre chaque annonce
|
2022-02-22 13:05:33 +01:00
|
|
|
MulticastSecond int `json:"multicastSecond"`
|
2022-02-22 11:02:45 +01:00
|
|
|
|
2022-03-05 17:21:46 +01:00
|
|
|
// domain Domain du StoreBackEnd
|
2022-02-26 18:08:52 +01:00
|
|
|
Domain string `json:"domain"`
|
|
|
|
|
|
|
|
// unicastPort Contient le port unicast auquel le FileFrontEnd se connecte
|
|
|
|
UnicastPort int `json:"unicastPort"`
|
2022-02-22 11:02:45 +01:00
|
|
|
}
|