Fixing linter issues

This commit is contained in:
Dieter Eickstaedt 2022-11-23 13:34:37 +01:00
parent c6bfe2cdb4
commit 40d1ab1fc7
2 changed files with 2 additions and 7 deletions

View file

@ -47,11 +47,6 @@ type item struct {
func (m model) Init() tea.Cmd { return nil }
func (m *model) handleSelectKeys(msg tea.KeyMsg) (tea.Model, tea.Cmd) {
return nil, nil
}
func (m model) Update(msg tea.Msg) (tea.Model, tea.Cmd) {
switch msg := msg.(type) {

View file

@ -8,8 +8,8 @@ import (
type inputStyle int64
// SELECT User is selecting one of the options
// INPUT User enters into input field
// SELECT User is selecting one of the options.
// INPUT User enters into input field.
const (
SELECT inputStyle = iota
INPUT