portal/model/tus.go

13 lines
146 B
Go
Raw Normal View History

2023-05-15 16:36:00 +00:00
package model
import (
"gorm.io/gorm"
)
type Tus struct {
gorm.Model
UploadID string `gorm:"primaryKey"`
Id string
2023-05-15 16:36:00 +00:00
Hash string
}