mirror of
https://github.com/mickael-kerjean/filestash.git
synced 2025-10-29 00:55:51 +08:00
the issue of plg_image_c is its reliance on shared libraries like libraw which depends on lcms2 and libheif which depends on a whole bunch of other stuff. That make releasing a fat binary that just work of Filestash tricky if someone ever read this, I would gladly get help to integrate the whole build of those things within CI without prolonging the build time by 2 hours.
45 lines
2.7 KiB
Go
45 lines
2.7 KiB
Go
package plugin
|
|
|
|
import (
|
|
. "github.com/mickael-kerjean/filestash/server/common"
|
|
_ "github.com/mickael-kerjean/filestash/server/plugin/plg_authenticate_htpasswd"
|
|
_ "github.com/mickael-kerjean/filestash/server/plugin/plg_authenticate_ldap"
|
|
_ "github.com/mickael-kerjean/filestash/server/plugin/plg_authenticate_local"
|
|
_ "github.com/mickael-kerjean/filestash/server/plugin/plg_authenticate_openid"
|
|
_ "github.com/mickael-kerjean/filestash/server/plugin/plg_authenticate_passthrough"
|
|
_ "github.com/mickael-kerjean/filestash/server/plugin/plg_authenticate_saml"
|
|
_ "github.com/mickael-kerjean/filestash/server/plugin/plg_backend_artifactory"
|
|
_ "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_dropbox"
|
|
_ "github.com/mickael-kerjean/filestash/server/plugin/plg_backend_ftp"
|
|
_ "github.com/mickael-kerjean/filestash/server/plugin/plg_backend_gdrive"
|
|
_ "github.com/mickael-kerjean/filestash/server/plugin/plg_backend_git"
|
|
_ "github.com/mickael-kerjean/filestash/server/plugin/plg_backend_ldap"
|
|
_ "github.com/mickael-kerjean/filestash/server/plugin/plg_backend_local"
|
|
_ "github.com/mickael-kerjean/filestash/server/plugin/plg_backend_mysql"
|
|
_ "github.com/mickael-kerjean/filestash/server/plugin/plg_backend_nfs"
|
|
_ "github.com/mickael-kerjean/filestash/server/plugin/plg_backend_nop"
|
|
_ "github.com/mickael-kerjean/filestash/server/plugin/plg_backend_s3"
|
|
_ "github.com/mickael-kerjean/filestash/server/plugin/plg_backend_samba"
|
|
_ "github.com/mickael-kerjean/filestash/server/plugin/plg_backend_sftp"
|
|
_ "github.com/mickael-kerjean/filestash/server/plugin/plg_backend_storj"
|
|
_ "github.com/mickael-kerjean/filestash/server/plugin/plg_backend_tmp"
|
|
_ "github.com/mickael-kerjean/filestash/server/plugin/plg_backend_url"
|
|
_ "github.com/mickael-kerjean/filestash/server/plugin/plg_backend_webdav"
|
|
_ "github.com/mickael-kerjean/filestash/server/plugin/plg_editor_wopi"
|
|
_ "github.com/mickael-kerjean/filestash/server/plugin/plg_handler_console"
|
|
_ "github.com/mickael-kerjean/filestash/server/plugin/plg_handler_mcp"
|
|
_ "github.com/mickael-kerjean/filestash/server/plugin/plg_image_ascii"
|
|
_ "github.com/mickael-kerjean/filestash/server/plugin/plg_search_stateless"
|
|
_ "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/plugin/plg_starter_http"
|
|
_ "github.com/mickael-kerjean/filestash/server/plugin/plg_thumbnail_c"
|
|
_ "github.com/mickael-kerjean/filestash/server/plugin/plg_video_transcoder"
|
|
)
|
|
|
|
func init() {
|
|
Hooks.Register.Onload(func() { Log.Debug("plugins loaded") })
|
|
}
|