Clock: Move to subdirectory

master
Elis Hirwing 2019-05-19 11:50:53 +02:00
parent 5ca25f0edd
commit ed065eb954
Signed by: etu
GPG Key ID: D57EFA625C9A925F
2 changed files with 4 additions and 3 deletions

View File

@ -1,6 +1,7 @@
package main
import (
"./src/clock"
"./src/config"
tm "github.com/buger/goterm"
"time"
@ -9,8 +10,8 @@ import (
func main() {
config := config.New("status.toml")
clock := clock.Clock{Config: &config}
sl := SL{Config: &config}
clock := Clock{Config: &config}
weather := Weather{Config: &config}
pollen := Pollen{Config: &config}

View File

@ -1,7 +1,7 @@
package main
package clock
import (
"./src/config"
"../config"
"github.com/common-nighthawk/go-figure"
"time"
)