Update tea imports in examples

This commit is contained in:
Christian Rocha 2020-01-18 11:15:55 -05:00
parent 1695d9682b
commit 768462afb3
No known key found for this signature in database
GPG Key ID: D6CC7A16E5878018
3 changed files with 5 additions and 3 deletions

View File

@ -5,8 +5,9 @@ package main
import ( import (
"fmt" "fmt"
"log" "log"
"tea"
"time" "time"
"github.com/charmbracelet/tea"
) )
type model int type model int

View File

@ -5,8 +5,9 @@ package main
import ( import (
"fmt" "fmt"
"log" "log"
"tea"
"time" "time"
"github.com/charmbracelet/tea"
) )
type model int type model int

View File

@ -6,9 +6,9 @@ import (
"fmt" "fmt"
"math" "math"
"strings" "strings"
"tea"
"time" "time"
"github.com/charmbracelet/tea"
"github.com/fogleman/ease" "github.com/fogleman/ease"
) )