repos / pico

pico services - prose.sh, pastes.sh, imgs.sh, feeds.sh, pgs.sh
git clone https://github.com/picosh/pico.git

pico / tui / common
Eric Bower · 17 May 24

err.go

1package common
2
3type ErrMsg struct {
4	Err error
5}
6
7func (e ErrMsg) Error() string { return e.Err.Error() }