Working on UI

This commit is contained in:
2023-01-06 09:34:55 -06:00
parent a8c1812bbf
commit c98a4dea0c
7 changed files with 392 additions and 6 deletions

View File

@@ -4,8 +4,8 @@ Copyright © 2022 Brian Buller <brian@bullercodeworks.com>
package cmd
import (
"fmt"
"git.bullercodeworks.com/brian/gime/cli"
"git.bullercodeworks.com/brian/gime/ui"
"github.com/spf13/cobra"
)
@@ -21,6 +21,6 @@ func init() {
}
func opUi(cmd *cobra.Command, args []string) error {
fmt.Println("ui called")
return nil
p := &cli.Program{}
return ui.RunTUI(p)
}