namespace Core.Controllers; public class WeatherController { /// /// Handle client/weather /// /// public WeatherData Generate() { throw new NotImplementedException(); } /// /// Handle client/localGame/weather /// /// /// public GetLocalWeatherResponseData GenerateLocal(string sessionId) { throw new NotImplementedException(); } }