gitea源码

1234567891011121314151617181920
  1. // Copyright 2024 The Gitea Authors. All rights reserved.
  2. // SPDX-License-Identifier: MIT
  3. package oauth2_provider
  4. import (
  5. "context"
  6. "code.gitea.io/gitea/modules/setting"
  7. )
  8. // Init initializes the oauth source
  9. func Init(ctx context.Context) error {
  10. if !setting.OAuth2.Enabled {
  11. return nil
  12. }
  13. return InitSigningKey()
  14. }