mirror of
https://codeberg.org/forgejo/forgejo.git
synced 2024-11-01 06:48:56 +00:00
22 lines
409 B
Go
22 lines
409 B
Go
|
// Copyright 2023 The Gitea Authors. All rights reserved.
|
||
|
// SPDX-License-Identifier: MIT
|
||
|
|
||
|
package cmd
|
||
|
|
||
|
import (
|
||
|
"github.com/urfave/cli"
|
||
|
)
|
||
|
|
||
|
var subcmdUser = cli.Command{
|
||
|
Name: "user",
|
||
|
Usage: "Modify users",
|
||
|
Subcommands: []cli.Command{
|
||
|
microcmdUserCreate,
|
||
|
microcmdUserList,
|
||
|
microcmdUserChangePassword,
|
||
|
microcmdUserDelete,
|
||
|
microcmdUserGenerateAccessToken,
|
||
|
microcmdUserMustChangePassword,
|
||
|
},
|
||
|
}
|