mirror of
https://github.com/mickael-kerjean/filestash.git
synced 2025-10-29 17:18:43 +08:00
16 lines
575 B
Go
16 lines
575 B
Go
package plugin
|
|
|
|
import (
|
|
_ "github.com/mickael-kerjean/filestash/server/plugin/plg_image_light"
|
|
_ "github.com/mickael-kerjean/filestash/server/plugin/plg_backend_backblaze"
|
|
_ "github.com/mickael-kerjean/filestash/server/plugin/plg_backend_dav"
|
|
_ "github.com/mickael-kerjean/filestash/server/plugin/plg_backend_mysql"
|
|
_ "github.com/mickael-kerjean/filestash/server/plugin/plg_security_scanner"
|
|
_ "github.com/mickael-kerjean/filestash/server/plugin/plg_security_svg"
|
|
. "github.com/mickael-kerjean/filestash/server/common"
|
|
)
|
|
|
|
func init() {
|
|
Log.Debug("Plugin loader")
|
|
}
|