2026-03-16 18:06:59 +03:00

8 lines
95 B
Go

package errors
import "errors"
var (
ErrCommandNotFound = errors.New("command not found")
)