2022-02-22 11:02:45 +01:00
|
|
|
package config
|
|
|
|
|
|
|
|
// AppConfig Contient toute la configuration du server
|
|
|
|
type AppConfig struct {
|
|
|
|
// multicastAddress Contient l'adresse multicast du FileFrontEnd (adresse:port)
|
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
|
|
|
|
|
|
|
// unicastAddress Contient l'adresse unicast auquel le FileFrontEnd se connecte (adresse:port)
|
2022-02-22 13:05:33 +01:00
|
|
|
UnicastAddress string `json:"unicastAddress"`
|
2022-02-22 11:02:45 +01:00
|
|
|
}
|