weather-api/api/weather-api.go
2021-03-05 23:20:47 +01:00

10 lines
189 B
Go

package api
import "weather-data/weathersource"
//WeatherAPI is the common interface for different apis
type WeatherAPI interface {
Start() error
Close()
weathersource.WeatherSource
}