9 lines
302 B
Go
9 lines
302 B
Go
// Package openweather contains provider-specific helper code for OpenWeather
|
|
// used by sources and normalizers.
|
|
//
|
|
// Rules:
|
|
// - No network I/O here.
|
|
// - Keep helpers deterministic and easy to unit test.
|
|
// - Put provider invariants here (e.g., units=metric enforcement).
|
|
package openweather
|