gitea源码

123456789101112131415
  1. // Copyright 2021 The Gitea Authors. All rights reserved.
  2. // SPDX-License-Identifier: MIT
  3. package v1_16
  4. import (
  5. "xorm.io/xorm"
  6. )
  7. func AddWebAuthnCred(x *xorm.Engine) error {
  8. // NO-OP Don't migrate here - let v210 do this.
  9. return nil
  10. }