StoreBackEnd/pkg/config/AppConfig.go

23 lines
713 B
Go

package config
// AppConfig Contient toute la configuration du server
type AppConfig struct {
// MulticastNetworkInterface
MulticastNetworkInterface string `json:"multicastNetworkInterface"`
// 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 du StoreBackEnd
Domain string `json:"domain"`
// UnicastPort Contient le port unicast auquel le FileFrontEnd se connecte
UnicastPort int `json:"unicastPort"`
// StoragePath Chemin vers le lieu de stockage de l'application
StoragePath string `json:"storagePath"`
}