1
0
mirror of https://github.com/taigrr/wtf synced 2025-01-18 04:03:14 -08:00

Fixed name

This commit is contained in:
Andrew 2018-06-10 03:19:26 +03:00
parent bddc87fcd2
commit bd0f3e1e56
2 changed files with 30 additions and 29 deletions

View File

@ -2,8 +2,9 @@ package circleci
import ( import (
"fmt" "fmt"
"github.com/andrewzolotukhin/wtf/wtf"
"github.com/olebedev/config" "github.com/olebedev/config"
"github.com/senorprogrammer/wtf/wtf"
) )
// Config is a pointer to the global config object // Config is a pointer to the global config object

56
wtf.go
View File

@ -6,38 +6,38 @@ import (
"os" "os"
"time" "time"
"github.com/andrewzolotukhin/wtf/bamboohr"
"github.com/andrewzolotukhin/wtf/bargraph"
"github.com/andrewzolotukhin/wtf/blockfolio"
"github.com/andrewzolotukhin/wtf/cfg"
"github.com/andrewzolotukhin/wtf/circleci"
"github.com/andrewzolotukhin/wtf/clocks"
"github.com/andrewzolotukhin/wtf/cmdrunner"
"github.com/andrewzolotukhin/wtf/cryptoexchanges/bittrex"
"github.com/andrewzolotukhin/wtf/cryptoexchanges/cryptolive"
"github.com/andrewzolotukhin/wtf/gcal"
"github.com/andrewzolotukhin/wtf/git"
"github.com/andrewzolotukhin/wtf/github"
"github.com/andrewzolotukhin/wtf/gspreadsheets"
"github.com/andrewzolotukhin/wtf/help"
"github.com/andrewzolotukhin/wtf/ipapi"
"github.com/andrewzolotukhin/wtf/ipinfo"
"github.com/andrewzolotukhin/wtf/jira"
"github.com/andrewzolotukhin/wtf/newrelic"
"github.com/andrewzolotukhin/wtf/opsgenie"
"github.com/andrewzolotukhin/wtf/power"
"github.com/andrewzolotukhin/wtf/prettyweather"
"github.com/andrewzolotukhin/wtf/security"
"github.com/andrewzolotukhin/wtf/status"
"github.com/andrewzolotukhin/wtf/system"
"github.com/andrewzolotukhin/wtf/textfile"
"github.com/andrewzolotukhin/wtf/todo"
"github.com/andrewzolotukhin/wtf/weather"
"github.com/andrewzolotukhin/wtf/wtf"
"github.com/gdamore/tcell" "github.com/gdamore/tcell"
"github.com/olebedev/config" "github.com/olebedev/config"
"github.com/radovskyb/watcher" "github.com/radovskyb/watcher"
"github.com/rivo/tview" "github.com/rivo/tview"
"github.com/senorprogrammer/wtf/bamboohr"
"github.com/senorprogrammer/wtf/bargraph"
"github.com/senorprogrammer/wtf/blockfolio"
"github.com/senorprogrammer/wtf/cfg"
"github.com/senorprogrammer/wtf/circleci"
"github.com/senorprogrammer/wtf/clocks"
"github.com/senorprogrammer/wtf/cmdrunner"
"github.com/senorprogrammer/wtf/cryptoexchanges/bittrex"
"github.com/senorprogrammer/wtf/cryptoexchanges/cryptolive"
"github.com/senorprogrammer/wtf/gcal"
"github.com/senorprogrammer/wtf/git"
"github.com/senorprogrammer/wtf/github"
"github.com/senorprogrammer/wtf/gspreadsheets"
"github.com/senorprogrammer/wtf/help"
"github.com/senorprogrammer/wtf/ipapi"
"github.com/senorprogrammer/wtf/ipinfo"
"github.com/senorprogrammer/wtf/jira"
"github.com/senorprogrammer/wtf/newrelic"
"github.com/senorprogrammer/wtf/opsgenie"
"github.com/senorprogrammer/wtf/power"
"github.com/senorprogrammer/wtf/prettyweather"
"github.com/senorprogrammer/wtf/security"
"github.com/senorprogrammer/wtf/status"
"github.com/senorprogrammer/wtf/system"
"github.com/senorprogrammer/wtf/textfile"
"github.com/senorprogrammer/wtf/todo"
"github.com/senorprogrammer/wtf/weather"
"github.com/senorprogrammer/wtf/wtf"
) )
/* -------------------- Functions -------------------- */ /* -------------------- Functions -------------------- */