Skip to content

Commit

Permalink
🔨 chore(mochi): update go mod path to codeberg
Browse files Browse the repository at this point in the history
  • Loading branch information
fawni committed Nov 25, 2023
1 parent 82b47b2 commit 4a4f42f
Show file tree
Hide file tree
Showing 7 changed files with 13 additions and 13 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ tamako comes with a pretty little tui frontend for it called mochi
### Installation

```sh
go install github.com/fawni/tamako/cmd/mochi@latest
go install codeberg.org/fawn/tamako/cmd/mochi@latest
```
### Usage

Expand Down
8 changes: 4 additions & 4 deletions cmd/mochi/cmd/root.go
Original file line number Diff line number Diff line change
Expand Up @@ -4,11 +4,11 @@ import (
"fmt"
"os"

"codeberg.org/fawn/tamako/cmd/mochi/tamako"
"codeberg.org/fawn/tamako/cmd/mochi/tui"
"codeberg.org/fawn/tamako/cmd/mochi/tui/minimal"
"codeberg.org/fawn/tamako/cmd/mochi/tui/styles"
tea "github.com/charmbracelet/bubbletea"
"github.com/fawni/tamako/cmd/mochi/tamako"
"github.com/fawni/tamako/cmd/mochi/tui"
"github.com/fawni/tamako/cmd/mochi/tui/minimal"
"github.com/fawni/tamako/cmd/mochi/tui/styles"
"github.com/muesli/termenv"
"github.com/spf13/cobra"
)
Expand Down
2 changes: 1 addition & 1 deletion cmd/mochi/go.mod
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
module github.com/fawni/tamako/cmd/mochi
module codeberg.org/fawn/tamako/cmd/mochi

go 1.20

Expand Down
2 changes: 1 addition & 1 deletion cmd/mochi/main.go
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
package main

import "github.com/fawni/tamako/cmd/mochi/cmd"
import "codeberg.org/fawn/tamako/cmd/mochi/cmd"

func main() {
cmd.Execute()
Expand Down
4 changes: 2 additions & 2 deletions cmd/mochi/tui/minimal/minimal.go
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,8 @@ package minimal
import (
"fmt"

"github.com/fawni/tamako/cmd/mochi/tamako"
"github.com/fawni/tamako/cmd/mochi/tui/styles"
"codeberg.org/fawn/tamako/cmd/mochi/tamako"
"codeberg.org/fawn/tamako/cmd/mochi/tui/styles"
)

func Render(w tamako.Whisper) {
Expand Down
2 changes: 1 addition & 1 deletion cmd/mochi/tui/minimal/styles.go
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
package minimal

import (
"codeberg.org/fawn/tamako/cmd/mochi/tui/styles"
lg "github.com/charmbracelet/lipgloss"
"github.com/fawni/tamako/cmd/mochi/tui/styles"
)

var (
Expand Down
6 changes: 3 additions & 3 deletions cmd/mochi/tui/tui.go
Original file line number Diff line number Diff line change
Expand Up @@ -3,13 +3,13 @@ package tui
import (
"fmt"

"codeberg.org/fawn/tamako/cmd/mochi/tamako"
"codeberg.org/fawn/tamako/cmd/mochi/tui/keys"
"codeberg.org/fawn/tamako/cmd/mochi/tui/styles"
"github.com/atotto/clipboard"
"github.com/charmbracelet/bubbles/key"
"github.com/charmbracelet/bubbles/list"
tea "github.com/charmbracelet/bubbletea"
"github.com/fawni/tamako/cmd/mochi/tamako"
"github.com/fawni/tamako/cmd/mochi/tui/keys"
"github.com/fawni/tamako/cmd/mochi/tui/styles"
)

type TUI struct {
Expand Down

0 comments on commit 4a4f42f

Please sign in to comment.