8 lines
91 B
Go
8 lines
91 B
Go
package buffer
|
|
|
|
import "errors"
|
|
|
|
var (
|
|
ErrBufferIsEmpty = errors.New("buffer is empty")
|
|
)
|