|
|
@@ -12,7 +12,7 @@ package main
|
|
|
import (
|
|
|
"flag"
|
|
|
"fmt"
|
|
|
- "issho"
|
|
|
+ "issues"
|
|
|
"os"
|
|
|
|
|
|
tea "github.com/charmbracelet/bubbletea"
|
|
|
@@ -22,9 +22,9 @@ func main() {
|
|
|
flag.Parse()
|
|
|
arg := flag.Args()
|
|
|
|
|
|
- bug, _ := issho.Issue.NewFromPath(issho.Issue{}, arg[0])
|
|
|
+ bug, _ := issues.Issue.NewFromPath(issues.Issue{}, arg[0])
|
|
|
p := tea.NewProgram(
|
|
|
- issho.Model{Issue: bug},
|
|
|
+ issues.Model{Issue: bug},
|
|
|
tea.WithAltScreen(), // use the full size of the terminal in its "alternate screen buffer"
|
|
|
// tea.WithMouseCellMotion(), // turn on mouse support so we can track the mouse wheel
|
|
|
)
|