mirror of
https://github.com/mickael-kerjean/filestash
synced 2025-12-06 16:32:31 +01:00
11 lines
174 B
Go
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"
|
|
)
|