Skip to content

Commit

Permalink
ui->gui
Browse files Browse the repository at this point in the history
  • Loading branch information
hatsu38 committed Aug 24, 2021
1 parent 035d89a commit 6f2febc
Show file tree
Hide file tree
Showing 8 changed files with 9 additions and 9 deletions.
2 changes: 1 addition & 1 deletion ui/http_text_view.go → gui/http_text_view.go
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package ui
package gui

import (
"github.com/gdamore/tcell/v2"
Expand Down
2 changes: 1 addition & 1 deletion ui/navigate.go → gui/navigate.go
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package ui
package gui

import (
"github.com/gdamore/tcell/v2"
Expand Down
2 changes: 1 addition & 1 deletion ui/res_text_view.go → gui/res_text_view.go
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package ui
package gui

import (
"github.com/gdamore/tcell/v2"
Expand Down
2 changes: 1 addition & 1 deletion ui/table.go → gui/table.go
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package ui
package gui

import (
"fmt"
Expand Down
2 changes: 1 addition & 1 deletion ui/ui.go → gui/ui.go
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package ui
package gui

import (
"fmt"
Expand Down
2 changes: 1 addition & 1 deletion ui/ui_test.go → gui/ui_test.go
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package ui
package gui

import (
"testing"
Expand Down
2 changes: 1 addition & 1 deletion ui/url_field.go → gui/url_field.go
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package ui
package gui

import (
"github.com/gdamore/tcell/v2"
Expand Down
4 changes: 2 additions & 2 deletions main.go
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ import (
"log"
"os"

"github.com/hatsu38/postman-tui/ui"
"github.com/hatsu38/postman-tui/gui"
)

var (
Expand Down Expand Up @@ -37,7 +37,7 @@ Author:

func run() int {
var i interface{}
if err := ui.New().Run(i); err != nil {
if err := gui.New().Run(i); err != nil {
log.Println(err)
return 1
}
Expand Down

0 comments on commit 6f2febc

Please sign in to comment.