feat(plugins): add rudimentary plugin system

This commit is contained in:
kolaente
2025-07-24 12:14:19 +02:00
parent 813bdb58ff
commit b08b43953b
10 changed files with 297 additions and 0 deletions

View File

@@ -33,6 +33,7 @@ import (
"code.vikunja.io/api/pkg/modules/auth/openid"
"code.vikunja.io/api/pkg/modules/keyvalue"
migrationHandler "code.vikunja.io/api/pkg/modules/migration/handler"
"code.vikunja.io/api/pkg/plugins"
"code.vikunja.io/api/pkg/red"
"code.vikunja.io/api/pkg/user"
)
@@ -98,6 +99,9 @@ func FullInitWithoutAsync() {
// Load translations
i18n.Init()
// Initialize plugins
plugins.Initialize()
}
// FullInit initializes all kinds of things in the right order