18 lines
187 B
Go
18 lines
187 B
Go
package entity
|
|
|
|
import (
|
|
"time"
|
|
)
|
|
|
|
const (
|
|
StorageLocal = "local"
|
|
StorageS3 = "s3"
|
|
)
|
|
|
|
type File struct {
|
|
Id string
|
|
Storage string
|
|
Size int64
|
|
CreatedAt time.Time
|
|
}
|