You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
23 lines
441 B
Go
23 lines
441 B
Go
3 years ago
|
package swampfile
|
||
3 years ago
|
|
||
|
import (
|
||
|
"time"
|
||
|
"errors"
|
||
|
)
|
||
|
|
||
3 years ago
|
type SwampFile struct {
|
||
3 years ago
|
UserAgentId int64
|
||
|
Path string
|
||
|
Size int64
|
||
|
CreatedAt time.Time
|
||
|
}
|
||
|
|
||
|
var (
|
||
|
ErrDuplicate = errors.New("record already exists")
|
||
3 years ago
|
ErrExceedQuota = errors.New("file too large")
|
||
3 years ago
|
ErrQuotaInvalid = errors.New("quota invalid")
|
||
3 years ago
|
ErrNotExists = errors.New("row not exists")
|
||
|
ErrUpdateFailed = errors.New("update failed")
|
||
|
ErrDeleteFailed = errors.New("delete failed")
|
||
|
)
|