Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion entries.go
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,8 @@ func (e *EntrySection) String() string {
return buf.String()
}

//go:generate stringer -type=AppType
//go:generate go run golang.org/x/tools/cmd/stringer -type=AppType

type AppType uint8

const (
Expand Down
3 changes: 2 additions & 1 deletion prg.go
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,8 @@ import (
"os"
)

//go:generate stringer -type=DataType
//go:generate go run golang.org/x/tools/cmd/stringer -type=DataType

type DataType uint8

const (
Expand Down