mirror of
https://github.com/mickael-kerjean/filestash
synced 2025-12-08 01:12:49 +01:00
This plugin which came through a PR is giving issues to users which have been saying "I found it to perform quite poorly during browsing" which is a no no. One can still compile Filestash with this plugin, we'll simply disable it by default for the time being
26 lines
1.4 KiB
Go
26 lines
1.4 KiB
Go
package plugin
|
|
|
|
import (
|
|
_ "github.com/mickael-kerjean/filestash/server/plugin/plg_starter_http"
|
|
_ "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_ftp"
|
|
_ "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_backend_samba"
|
|
_ "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")
|
|
}
|