Weather: Move to subdirectory

master
Elis Hirwing 2019-05-19 11:56:09 +02:00
parent 9d4a8f5de5
commit 9b06917166
Signed by: etu
GPG Key ID: D57EFA625C9A925F
2 changed files with 4 additions and 3 deletions

View File

@ -5,6 +5,7 @@ import (
"./src/config"
"./src/pollen"
"./src/sl"
"./src/weather"
tm "github.com/buger/goterm"
"time"
)
@ -15,7 +16,7 @@ func main() {
clock := clock.Clock{Config: &config}
pollen := pollen.Pollen{Config: &config}
sl := sl.SL{Config: &config}
weather := Weather{Config: &config}
weather := weather.Weather{Config: &config}
tm.Clear()
tm.Print("\033[?25l")

View File

@ -1,7 +1,7 @@
package main
package weather
import (
"./src/config"
"../config"
"io/ioutil"
"net/http"
"strings"