Skip to content

Commit

Permalink
Make modules internal
Browse files Browse the repository at this point in the history
  • Loading branch information
aymanbagabas committed Oct 12, 2021
1 parent 957762d commit a5ea5b2
Show file tree
Hide file tree
Showing 13 changed files with 13 additions and 13 deletions.
2 changes: 1 addition & 1 deletion config/config.go → internal/config/config.go
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ import (
"os"
"path/filepath"

"github.com/charmbracelet/soft/git"
"github.com/charmbracelet/soft/internal/git"
gg "github.com/go-git/go-git/v5"
"github.com/go-git/go-git/v5/plumbing/object"
)
Expand Down
File renamed without changes.
File renamed without changes.
File renamed without changes.
10 changes: 5 additions & 5 deletions tui/bubble.go → internal/tui/bubble.go
Original file line number Diff line number Diff line change
Expand Up @@ -6,11 +6,11 @@ import (

tea "github.com/charmbracelet/bubbletea"
"github.com/charmbracelet/lipgloss"
"github.com/charmbracelet/soft/config"
"github.com/charmbracelet/soft/git"
"github.com/charmbracelet/soft/tui/bubbles/repo"
"github.com/charmbracelet/soft/tui/bubbles/selection"
"github.com/charmbracelet/soft/tui/style"
"github.com/charmbracelet/soft/internal/config"
"github.com/charmbracelet/soft/internal/git"
"github.com/charmbracelet/soft/internal/tui/bubbles/repo"
"github.com/charmbracelet/soft/internal/tui/bubbles/selection"
"github.com/charmbracelet/soft/internal/tui/style"
"github.com/gliderlabs/ssh"
)

Expand Down
File renamed without changes.
File renamed without changes.
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,8 @@ import (
tea "github.com/charmbracelet/bubbletea"
"github.com/charmbracelet/glamour"
"github.com/charmbracelet/lipgloss"
"github.com/charmbracelet/soft/git"
"github.com/charmbracelet/soft/tui/style"
"github.com/charmbracelet/soft/internal/git"
"github.com/charmbracelet/soft/internal/tui/style"
"github.com/muesli/reflow/truncate"
"github.com/muesli/reflow/wrap"
)
Expand Down
File renamed without changes.
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ import (

tea "github.com/charmbracelet/bubbletea"
"github.com/charmbracelet/lipgloss"
"github.com/charmbracelet/soft/tui/style"
"github.com/charmbracelet/soft/internal/tui/style"
"github.com/muesli/reflow/truncate"
)

Expand Down
6 changes: 3 additions & 3 deletions tui/commands.go → internal/tui/commands.go
Original file line number Diff line number Diff line change
Expand Up @@ -5,9 +5,9 @@ import (

tea "github.com/charmbracelet/bubbletea"
"github.com/charmbracelet/lipgloss"
"github.com/charmbracelet/soft/config"
br "github.com/charmbracelet/soft/tui/bubbles/repo"
"github.com/charmbracelet/soft/tui/bubbles/selection"
"github.com/charmbracelet/soft/internal/config"
br "github.com/charmbracelet/soft/internal/tui/bubbles/repo"
"github.com/charmbracelet/soft/internal/tui/bubbles/selection"
gm "github.com/charmbracelet/wish/git"
"github.com/muesli/termenv"
)
Expand Down
2 changes: 1 addition & 1 deletion tui/session.go → internal/tui/session.go
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import (
"fmt"

tea "github.com/charmbracelet/bubbletea"
"github.com/charmbracelet/soft/config"
"github.com/charmbracelet/soft/internal/config"
"github.com/gliderlabs/ssh"
)

Expand Down
File renamed without changes.

0 comments on commit a5ea5b2

Please sign in to comment.