gitea源码

12345678910111213141516171819202122
  1. // Copyright 2023 The Gitea Authors. All rights reserved.
  2. // SPDX-License-Identifier: MIT
  3. package cmd
  4. import (
  5. "github.com/urfave/cli/v3"
  6. )
  7. var subcmdUser = &cli.Command{
  8. Name: "user",
  9. Usage: "Modify users",
  10. Commands: []*cli.Command{
  11. microcmdUserCreate(),
  12. microcmdUserList,
  13. microcmdUserChangePassword(),
  14. microcmdUserDelete(),
  15. microcmdUserGenerateAccessToken,
  16. microcmdUserMustChangePassword(),
  17. },
  18. }