diff --git a/errors.go b/errors.go index a845384d..96c13758 100644 --- a/errors.go +++ b/errors.go @@ -18,14 +18,6 @@ package main import "fmt" -type errInvalidTheme struct { - theme string -} - -func (e errInvalidTheme) Error() string { - return "invalid theme: " + e.theme -} - type errInvalidArgument struct{} func (e errInvalidArgument) Error() string {