mirror of
https://github.com/go-gitea/gitea.git
synced 2025-06-02 10:44:47 +02:00
22 lines
419 B
Go
22 lines
419 B
Go
// Copyright 2023 The Gitea Authors. All rights reserved.
|
|
// SPDX-License-Identifier: MIT
|
|
|
|
package cmd
|
|
|
|
import (
|
|
"github.com/urfave/cli/v3"
|
|
)
|
|
|
|
var subcmdUser = &cli.Command{
|
|
Name: "user",
|
|
Usage: "Modify users",
|
|
Commands: []*cli.Command{
|
|
microcmdUserCreate(),
|
|
microcmdUserList,
|
|
microcmdUserChangePassword(),
|
|
microcmdUserDelete(),
|
|
microcmdUserGenerateAccessToken,
|
|
microcmdUserMustChangePassword(),
|
|
},
|
|
}
|