10 lines
129 B
Go
10 lines
129 B
Go
package main
|
|
|
|
import (
|
|
"fmt"
|
|
// tea "github.com/charmbracelet/bubbletea"
|
|
)
|
|
|
|
func main() {
|
|
fmt.Println("hi this is client");
|
|
}
|