Files
filestash/server/common/plugin.go
T

12 lines
174 B
Go

package common
type Plugin struct {
Type string
Call interface{}
Priority int
}
const (
PROCESS_FILE_CONTENT_BEFORE_SEND = "PROCESS_FILE_CONTENT_BEFORE_SEND"
)