Skip to content

Commit 0ae3fc6

Browse files
authored
feat: export all cmd (#2746)
1 parent 6024e8d commit 0ae3fc6

9 files changed

+32
-33
lines changed

cmd/admin.go

+3-3
Original file line numberDiff line numberDiff line change
@@ -9,8 +9,8 @@ import (
99
"github.com/spf13/cobra"
1010
)
1111

12-
// passwordCmd represents the password command
13-
var passwordCmd = &cobra.Command{
12+
// PasswordCmd represents the password command
13+
var PasswordCmd = &cobra.Command{
1414
Use: "admin",
1515
Aliases: []string{"password"},
1616
Short: "Show admin user's info",
@@ -26,7 +26,7 @@ var passwordCmd = &cobra.Command{
2626
}
2727

2828
func init() {
29-
rootCmd.AddCommand(passwordCmd)
29+
RootCmd.AddCommand(PasswordCmd)
3030

3131
// Here you will define your flags and configuration settings.
3232

cmd/cancel2FA.go

+3-3
Original file line numberDiff line numberDiff line change
@@ -9,8 +9,8 @@ import (
99
"github.com/spf13/cobra"
1010
)
1111

12-
// cancel2FACmd represents the delete2fa command
13-
var cancel2FACmd = &cobra.Command{
12+
// Cancel2FACmd represents the delete2fa command
13+
var Cancel2FACmd = &cobra.Command{
1414
Use: "cancel2fa",
1515
Short: "Delete 2FA of admin user",
1616
Run: func(cmd *cobra.Command, args []string) {
@@ -28,7 +28,7 @@ var cancel2FACmd = &cobra.Command{
2828
}
2929

3030
func init() {
31-
rootCmd.AddCommand(cancel2FACmd)
31+
RootCmd.AddCommand(Cancel2FACmd)
3232

3333
// Here you will define your flags and configuration settings.
3434

cmd/lang.go

+3-3
Original file line numberDiff line numberDiff line change
@@ -123,8 +123,8 @@ func generateSettingsJson() {
123123
//utils.WriteJsonToFile("lang/settings.json", settingsLang)
124124
}
125125

126-
// langCmd represents the lang command
127-
var langCmd = &cobra.Command{
126+
// LangCmd represents the lang command
127+
var LangCmd = &cobra.Command{
128128
Use: "lang",
129129
Short: "Generate language json file",
130130
Run: func(cmd *cobra.Command, args []string) {
@@ -138,7 +138,7 @@ var langCmd = &cobra.Command{
138138
}
139139

140140
func init() {
141-
rootCmd.AddCommand(langCmd)
141+
RootCmd.AddCommand(LangCmd)
142142

143143
// Here you will define your flags and configuration settings.
144144

cmd/restart.go

+3-3
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,8 @@ import (
77
"github.com/spf13/cobra"
88
)
99

10-
// restartCmd represents the restart command
11-
var restartCmd = &cobra.Command{
10+
// RestartCmd represents the restart command
11+
var RestartCmd = &cobra.Command{
1212
Use: "restart",
1313
Short: "Restart alist server by daemon/pid file",
1414
Run: func(cmd *cobra.Command, args []string) {
@@ -18,7 +18,7 @@ var restartCmd = &cobra.Command{
1818
}
1919

2020
func init() {
21-
rootCmd.AddCommand(restartCmd)
21+
RootCmd.AddCommand(RestartCmd)
2222

2323
// Here you will define your flags and configuration settings.
2424

cmd/root.go

+7-7
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ import (
88
"github.com/spf13/cobra"
99
)
1010

11-
var rootCmd = &cobra.Command{
11+
var RootCmd = &cobra.Command{
1212
Use: "alist",
1313
Short: "A file list program that supports multiple storage.",
1414
Long: `A file list program that supports multiple storage,
@@ -17,16 +17,16 @@ Complete documentation is available at https://alist.nn.ci/`,
1717
}
1818

1919
func Execute() {
20-
if err := rootCmd.Execute(); err != nil {
20+
if err := RootCmd.Execute(); err != nil {
2121
fmt.Fprintln(os.Stderr, err)
2222
os.Exit(1)
2323
}
2424
}
2525

2626
func init() {
27-
rootCmd.PersistentFlags().StringVar(&flags.DataDir, "data", "data", "config file")
28-
rootCmd.PersistentFlags().BoolVar(&flags.Debug, "debug", false, "start with debug mode")
29-
rootCmd.PersistentFlags().BoolVar(&flags.NoPrefix, "no-prefix", false, "disable env prefix")
30-
rootCmd.PersistentFlags().BoolVar(&flags.Dev, "dev", false, "start with dev mode")
31-
rootCmd.PersistentFlags().BoolVar(&flags.ForceBinDir, "force-bin-dir", false, "Force to use the directory where the binary file is located as data directory")
27+
RootCmd.PersistentFlags().StringVar(&flags.DataDir, "data", "data", "config file")
28+
RootCmd.PersistentFlags().BoolVar(&flags.Debug, "debug", false, "start with debug mode")
29+
RootCmd.PersistentFlags().BoolVar(&flags.NoPrefix, "no-prefix", false, "disable env prefix")
30+
RootCmd.PersistentFlags().BoolVar(&flags.Dev, "dev", false, "start with dev mode")
31+
RootCmd.PersistentFlags().BoolVar(&flags.ForceBinDir, "force-bin-dir", false, "Force to use the directory where the binary file is located as data directory")
3232
}

cmd/server.go

+4-4
Original file line numberDiff line numberDiff line change
@@ -20,8 +20,8 @@ import (
2020
"github.com/spf13/cobra"
2121
)
2222

23-
// serverCmd represents the server command
24-
var serverCmd = &cobra.Command{
23+
// ServerCmd represents the server command
24+
var ServerCmd = &cobra.Command{
2525
Use: "server",
2626
Short: "Start the server at the specified address",
2727
Long: `Start the server at the specified address
@@ -76,7 +76,7 @@ the address is defined in config file`,
7676
}
7777

7878
func init() {
79-
rootCmd.AddCommand(serverCmd)
79+
RootCmd.AddCommand(ServerCmd)
8080

8181
// Here you will define your flags and configuration settings.
8282

@@ -95,5 +95,5 @@ func OutAlistInit() {
9595
cmd *cobra.Command
9696
args []string
9797
)
98-
serverCmd.Run(cmd, args)
98+
ServerCmd.Run(cmd, args)
9999
}

cmd/start.go

+3-3
Original file line numberDiff line numberDiff line change
@@ -13,8 +13,8 @@ import (
1313
"github.com/spf13/cobra"
1414
)
1515

16-
// startCmd represents the start command
17-
var startCmd = &cobra.Command{
16+
// StartCmd represents the start command
17+
var StartCmd = &cobra.Command{
1818
Use: "start",
1919
Short: "Silent start alist server with `--force-bin-dir`",
2020
Run: func(cmd *cobra.Command, args []string) {
@@ -57,7 +57,7 @@ func start() {
5757
}
5858

5959
func init() {
60-
rootCmd.AddCommand(startCmd)
60+
RootCmd.AddCommand(StartCmd)
6161

6262
// Here you will define your flags and configuration settings.
6363

cmd/stop.go

+3-3
Original file line numberDiff line numberDiff line change
@@ -10,8 +10,8 @@ import (
1010
"github.com/spf13/cobra"
1111
)
1212

13-
// stopCmd represents the stop command
14-
var stopCmd = &cobra.Command{
13+
// StopCmd represents the stop command
14+
var StopCmd = &cobra.Command{
1515
Use: "stop",
1616
Short: "Stop alist server by daemon/pid file",
1717
Run: func(cmd *cobra.Command, args []string) {
@@ -44,7 +44,7 @@ func stop() {
4444
}
4545

4646
func init() {
47-
rootCmd.AddCommand(stopCmd)
47+
RootCmd.AddCommand(StopCmd)
4848

4949
// Here you will define your flags and configuration settings.
5050

cmd/version.go

+3-4
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
/*
22
Copyright © 2022 NAME HERE <EMAIL ADDRESS>
3-
43
*/
54
package cmd
65

@@ -12,8 +11,8 @@ import (
1211
"github.com/spf13/cobra"
1312
)
1413

15-
// versionCmd represents the version command
16-
var versionCmd = &cobra.Command{
14+
// VersionCmd represents the version command
15+
var VersionCmd = &cobra.Command{
1716
Use: "version",
1817
Short: "Show current version of AList",
1918
Run: func(cmd *cobra.Command, args []string) {
@@ -30,7 +29,7 @@ WebVersion: %s
3029
}
3130

3231
func init() {
33-
rootCmd.AddCommand(versionCmd)
32+
RootCmd.AddCommand(VersionCmd)
3433

3534
// Here you will define your flags and configuration settings.
3635

0 commit comments

Comments
 (0)