loading up the forgejo repo on tangled to test page performance
at forgejo 414 B view raw
1// Copyright 2023 The Gitea Authors. All rights reserved. 2// SPDX-License-Identifier: MIT 3 4package cmd 5 6import ( 7 "github.com/urfave/cli/v2" 8) 9 10var subcmdUser = &cli.Command{ 11 Name: "user", 12 Usage: "Modify users", 13 Subcommands: []*cli.Command{ 14 microcmdUserCreate, 15 microcmdUserList, 16 microcmdUserChangePassword, 17 microcmdUserDelete, 18 microcmdUserGenerateAccessToken, 19 microcmdUserMustChangePassword, 20 }, 21}