Skip to content
This repository has been archived by the owner on Feb 3, 2023. It is now read-only.

Commit

Permalink
add headtip
Browse files Browse the repository at this point in the history
  • Loading branch information
ingbyr committed Sep 14, 2022
1 parent e2d7242 commit 1423c95
Showing 1 changed file with 23 additions and 0 deletions.
23 changes: 23 additions & 0 deletions tui/headtip.go
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
package tui

import (
tea "github.com/charmbracelet/bubbletea"
)

type HeadTip struct {
}

func (h *HeadTip) Init() tea.Cmd {
//TODO implement me
panic("implement me")
}

func (h *HeadTip) Update(msg tea.Msg) (tea.Model, tea.Cmd) {
//TODO implement me
panic("implement me")
}

func (h *HeadTip) View() string {
//TODO implement me
panic("implement me")
}

0 comments on commit 1423c95

Please sign in to comment.