Code upload

This commit is contained in:
nxshock 2021-03-19 22:27:25 +05:00
parent 2880e52a08
commit b146c2bc76
18 changed files with 215 additions and 0 deletions

8
api.go Normal file
View file

@ -0,0 +1,8 @@
package main
type WeatherData interface {
CurrentTemperature() float64
FeelsLikeTemperature() float64
Description() string
IconName() string
}