12 lines
304 B
Go
12 lines
304 B
Go
package lib
|
|
|
|
import "time"
|
|
|
|
// ShareLink is the information needed to build a shareable link.
|
|
type ShareLink struct {
|
|
Hash string `json:"hash" storm:"id,index"`
|
|
Path string `json:"path" storm:"index"`
|
|
Expires bool `json:"expires"`
|
|
ExpireDate time.Time `json:"expireDate"`
|
|
}
|