8 lines
179 B
Java
8 lines
179 B
Java
|
|
package com.ruoyi.device.domain.api;
|
||
|
|
|
||
|
|
import com.ruoyi.device.domain.model.weather.Weather;
|
||
|
|
|
||
|
|
public interface IWeatherDomain {
|
||
|
|
Weather weatherInfo(String lat, String lon);
|
||
|
|
}
|