filestash/server/common/plugin.go
2018-10-25 20:25:59 +11:00

11 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"
)