Move source files to src folder

This commit is contained in:
Caleb Bassi 2018-05-10 21:23:20 -07:00
parent b39fdb0ef1
commit 28066827ae
16 changed files with 5 additions and 5 deletions

View File

@ -9,8 +9,8 @@ import (
"syscall"
"time"
"github.com/cjbassi/gotop/colorschemes"
w "github.com/cjbassi/gotop/widgets"
"github.com/cjbassi/gotop/src/colorschemes"
w "github.com/cjbassi/gotop/src/widgets"
ui "github.com/cjbassi/termui"
"github.com/docopt/docopt-go"
)

View File

Before

Width:  |  Height:  |  Size: 91 KiB

After

Width:  |  Height:  |  Size: 91 KiB

View File

Before

Width:  |  Height:  |  Size: 87 KiB

After

Width:  |  Height:  |  Size: 87 KiB

View File

@ -5,7 +5,7 @@ import (
"strconv"
"time"
"github.com/cjbassi/gotop/utils"
"github.com/cjbassi/gotop/src/utils"
ui "github.com/cjbassi/termui"
psCPU "github.com/shirou/gopsutil/cpu"
)

View File

@ -4,7 +4,7 @@ import (
"fmt"
"time"
"github.com/cjbassi/gotop/utils"
"github.com/cjbassi/gotop/src/utils"
ui "github.com/cjbassi/termui"
psDisk "github.com/shirou/gopsutil/disk"
)

View File

@ -4,7 +4,7 @@ import (
"fmt"
"time"
"github.com/cjbassi/gotop/utils"
"github.com/cjbassi/gotop/src/utils"
ui "github.com/cjbassi/termui"
psNet "github.com/shirou/gopsutil/net"
)