15 lines
357 B
Go
15 lines
357 B
Go
package main
|
|
|
|
// These imports will be used later on the tutorial. If you save the file
|
|
// now, Go might complain they are unused, but that's fine.
|
|
// You may also need to run `go mod tidy` to download bubbletea and its
|
|
// dependencies.
|
|
import (
|
|
"fmt"
|
|
"os"
|
|
|
|
tea "github.com/charmbracelet/bubbletea"
|
|
bubble "github.com/charmbracelet/bubbles"
|
|
)
|
|
|