mirror of
https://github.com/mickael-kerjean/filestash.git
synced 2024-04-21 12:32:08 +00:00
12 lines
174 B
Go
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"
|
|
)
|