mirror of
https://github.com/Jguer/yay.git
synced 2024-11-07 17:47:21 +01:00
10 lines
172 B
Go
10 lines
172 B
Go
package text
|
|
|
|
import "github.com/leonelquinteros/gotext"
|
|
|
|
type ErrInputOverflow struct{}
|
|
|
|
func (e ErrInputOverflow) Error() string {
|
|
return gotext.Get("input too long")
|
|
}
|