mirror of
https://github.com/phishingclub/phishingclub.git
synced 2026-07-06 20:37:54 +02:00
7 lines
160 B
Go
7 lines
160 B
Go
package cellbuf
|
|
|
|
import "errors"
|
|
|
|
// ErrOutOfBounds is returned when the given x, y position is out of bounds.
|
|
var ErrOutOfBounds = errors.New("out of bounds")
|