StoreBackEnd/pkg/config/AppConfig.go

23 lines
713 B
Go
Raw Permalink Normal View History

package config
// AppConfig Contient toute la configuration du server
type AppConfig struct {
2022-03-08 14:58:41 +01:00
// MulticastNetworkInterface
MulticastNetworkInterface string `json:"multicastNetworkInterface"`
// MulticastAddress Contient l'adresse multicast du FileFrontEnd
MulticastAddress string `json:"multicastAddress"`
2022-03-08 14:58:41 +01:00
// MulticastSecond Contient le nombre de seconde entre chaque annonce
MulticastSecond int `json:"multicastSecond"`
2022-03-08 14:58:41 +01:00
// Domain du StoreBackEnd
2022-02-26 18:08:52 +01:00
Domain string `json:"domain"`
2022-03-08 14:58:41 +01:00
// UnicastPort Contient le port unicast auquel le FileFrontEnd se connecte
2022-02-26 18:08:52 +01:00
UnicastPort int `json:"unicastPort"`
// StoragePath Chemin vers le lieu de stockage de l'application
StoragePath string `json:"storagePath"`
}