20 lines
512 B
Go
20 lines
512 B
Go
|
package model
|
||
|
|
||
|
const (
|
||
|
// type
|
||
|
FieldFav = "folder"
|
||
|
FieldArc = "video"
|
||
|
FieldResource = "resource"
|
||
|
// action
|
||
|
ActionAdd = "add"
|
||
|
ActionDel = "del"
|
||
|
ActionMove = "move"
|
||
|
ActionCopy = "copy"
|
||
|
ActionMdel = "mdel"
|
||
|
ActionIndef = "indef"
|
||
|
ActionIncol = "incol"
|
||
|
ActionClean = "clean"
|
||
|
ActionInitRelationFids = "initRelationFids"
|
||
|
ActionInitFolderRelations = "initFolderRelations"
|
||
|
)
|