mirror of
https://github.com/3ybactuk/marketplace-go-service-project.git
synced 2025-10-30 14:03:45 +03:00
8 lines
226 B
Go
8 lines
226 B
Go
package model
|
|
|
|
import "errors"
|
|
|
|
var ErrCommentNotFound = errors.New("comment not found")
|
|
var ErrCommentEditUserMismatch = errors.New("comment edit user mismatch")
|
|
var ErrCommentEditTimeout = errors.New("comment edit timeout")
|