github.com/deadlysurgeon/weather@v0.0.0-20240402201029-3925d9f784b1/weather/weather.go (about)

     1  package weather
     2  
     3  // Service exposes the different functions we can execute on the weather
     4  // service.
     5  //
     6  //go:generate mockgen -source=weather.go -package=mock -destination=mock/weather.go
     7  type Service interface {
     8  	At(lat string, long string) (Report, error)
     9  }