StoreBackEnd/pkg/config/AppConfig.go

17 lines
513 B
Go
Raw Normal View History

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
MulticastAddress string `json:"multicastAddress"`
// multicastSecond Contient le nombre de seconde entre chaque annonce
MulticastSecond int `json:"multicastSecond"`
// 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"`
}