weather-api/api/weather-api.go
2021-03-20 15:18:12 +01:00

12 lines
194 B
Go

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