package config type EnvConfig struct { Server ServerEntity Log LogEntity Mongo MongoEntity } type ServerEntity struct { Ip string Port int } type LogEntity struct { LogEnv string LogPath string } type MongoEntity struct { Host string Port string Username string Password string Database string }