mirror of
https://github.com/mickael-kerjean/filestash.git
synced 2025-10-28 20:23:47 +08:00
25 lines
1.2 KiB
Go
25 lines
1.2 KiB
Go
package plugin
|
|
|
|
import (
|
|
_ "github.com/mickael-kerjean/filestash/server/plugin/plg_starter_tunnel"
|
|
_ "github.com/mickael-kerjean/filestash/server/plugin/plg_starter_tor"
|
|
_ "github.com/mickael-kerjean/filestash/server/plugin/plg_handler_console"
|
|
_ "github.com/mickael-kerjean/filestash/server/plugin/plg_video_transcoder"
|
|
_ "github.com/mickael-kerjean/filestash/server/plugin/plg_editor_onlyoffice"
|
|
_ "github.com/mickael-kerjean/filestash/server/plugin/plg_handler_syncthing"
|
|
_ "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_backend_s3"
|
|
_ "github.com/mickael-kerjean/filestash/server/plugin/plg_backend_ldap"
|
|
_ "github.com/mickael-kerjean/filestash/server/plugin/plg_backend_dropbox"
|
|
_ "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")
|
|
}
|