-
-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
153 changed files
with
1,035 additions
and
297 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -62,26 +62,31 @@ nfpms: | |
|
||
homepage: https://github.com/frabits/frabit | ||
|
||
maintainer: Blylei <[email protected]> | ||
maintainer: Frabit Labs | ||
|
||
description: |- | ||
The next-generation database automatic operation platform. | ||
The next-gene database automatic platform | ||
license: GPLv3 | ||
|
||
formats: | ||
- deb | ||
- rpm | ||
contents: | ||
- src: ./configs/frabit-server.yaml | ||
dst: /etc/frabit-server/config.yml | ||
type: 'config|noreplace' | ||
- src: ./packages/frabit-server.service | ||
dst: /etc/systemd/system/frabit-server.service | ||
scripts: | ||
postinstall: ./scripts/frabit-postinstall.sh | ||
bindir: /usr/bin | ||
|
||
# epoch: 2 | ||
|
||
# Section. | ||
|
||
section: default | ||
rpm: | ||
# RPM specific scripts. | ||
scripts: | ||
summary: The next-generation database automatic operation platform | ||
summary: The next-gene database automatic platform | ||
group: Unspecified | ||
compression: lzma | ||
|
||
|
@@ -104,9 +109,9 @@ nfpms: | |
- frabit-agent | ||
vendor: Frabit Inc. | ||
homepage: https://github.com/frabits/frabit | ||
maintainer: Blylei <[email protected]> | ||
maintainer: Frabit Labs | ||
description: |- | ||
The next-generation database automatic operation platform | ||
The next-gene database automatic platform | ||
license: GPLv3 | ||
formats: | ||
- deb | ||
|
@@ -120,7 +125,7 @@ nfpms: | |
|
||
rpm: | ||
scripts: | ||
summary: The next-generation database automatic operation platform | ||
summary: The next-gene database automatic platform | ||
group: Database | ||
compression: lzma | ||
|
||
|
@@ -135,6 +140,7 @@ nfpms: | |
- some-package | ||
signature: | ||
type: origin | ||
|
||
brews: | ||
- | ||
name: frabit | ||
|
@@ -145,8 +151,8 @@ brews: | |
name: goreleaser | ||
email: [email protected] | ||
folder: Formula | ||
homepage: https://www.frabit.tech/ | ||
description: "The next-generation database automatic operation platform" | ||
homepage: https://www.frabit.tech | ||
description: "The next-gene database automatic platform" | ||
|
||
checksum: | ||
name_template: 'checksum.txt' | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,45 @@ | ||
// Frabit - The next-generation database automatic operation platform | ||
// Copyright © 2022-2023 Frabit Labs | ||
// | ||
// Licensed under the GNU General Public License, Version 3.0 (the "License"); | ||
// you may not use this file except in compliance with the License. | ||
// You may obtain a copy of the License at | ||
// | ||
// https://www.gnu.org/licenses/gpl-3.0.txt | ||
// | ||
// Unless required by applicable law or agreed to in writing, software | ||
// distributed under the License is distributed on an "AS IS" BASIS, | ||
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
// See the License for the specific language governing permissions and | ||
// limitations under the License. | ||
|
||
package admin | ||
|
||
import ( | ||
"fmt" | ||
"github.com/spf13/cobra" | ||
) | ||
|
||
// CmdAdmin represents the Admin command | ||
var CmdAdmin = &cobra.Command{ | ||
Use: "reset-admin-password <new_password>", | ||
Short: "Reset admin password at any time", | ||
Run: func(cmd *cobra.Command, args []string) { | ||
fmt.Println("standalone called") | ||
}, | ||
} | ||
|
||
var resetAdminPassword = &cobra.Command{ | ||
Use: "reset-admin-password <new_password>", | ||
Short: "Reset admin password at any time", | ||
Run: runResetAdminPassword, | ||
} | ||
|
||
func runResetAdminPassword(cmd *cobra.Command, args []string) { | ||
fmt.Println("runResetAdminPassword called") | ||
} | ||
|
||
func init() { | ||
CmdAdmin.AddCommand(resetAdminPassword) | ||
CmdAdmin.Flags().BoolP("toggle", "t", false, "Help message for toggle") | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
// Frabit - The next-generation database automatic operation platform | ||
// Copyright © 2022-2023 Blylei <[email protected]> | ||
// Copyright © 2022-2023 Frabit Labs | ||
// | ||
// Licensed under the GNU General Public License, Version 3.0 (the "License"); | ||
// you may not use this file except in compliance with the License. | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
// Frabit - The next-generation database automatic operation platform | ||
// Copyright © 2022-2023 Blylei <[email protected]> | ||
// Copyright © 2022-2023 Frabit Labs | ||
// | ||
// Licensed under the GNU General Public License, Version 3.0 (the "License"); | ||
// you may not use this file except in compliance with the License. | ||
|
@@ -17,8 +17,7 @@ package auth | |
|
||
import ( | ||
"fmt" | ||
|
||
"github.com/frabits/frabit/common/version" | ||
"github.com/frabits/frabit/pkg/common/version" | ||
|
||
"github.com/spf13/cobra" | ||
) | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
// Frabit - The next-generation database automatic operation platform | ||
// Copyright © 2022-2023 Blylei <[email protected]> | ||
// Copyright © 2022-2023 Frabit Labs | ||
// | ||
// Licensed under the GNU General Public License, Version 3.0 (the "License"); | ||
// you may not use this file except in compliance with the License. | ||
|
@@ -17,7 +17,7 @@ package auth | |
|
||
import ( | ||
"fmt" | ||
"github.com/frabits/frabit/common/version" | ||
"github.com/frabits/frabit/pkg/common/version" | ||
"github.com/spf13/cobra" | ||
) | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
// Frabit - The next-generation database automatic operation platform | ||
// Copyright © 2022-2023 Blylei <[email protected]> | ||
// Copyright © 2022-2023 Frabit Labs | ||
// | ||
// Licensed under the GNU General Public License, Version 3.0 (the "License"); | ||
// you may not use this file except in compliance with the License. | ||
|
@@ -17,7 +17,7 @@ package auth | |
|
||
import ( | ||
"fmt" | ||
"github.com/frabits/frabit/common/version" | ||
"github.com/frabits/frabit/pkg/common/version" | ||
"github.com/spf13/cobra" | ||
) | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
// Frabit - The next-generation database automatic operation platform | ||
// Copyright © 2022-2023 Blylei <[email protected]> | ||
// Copyright © 2022-2023 Frabit Labs | ||
// | ||
// Licensed under the GNU General Public License, Version 3.0 (the "License"); | ||
// you may not use this file except in compliance with the License. | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
// Frabit - The next-generation database automatic operation platform | ||
// Copyright © 2022-2023 Blylei <[email protected]> | ||
// Copyright © 2022-2023 Frabit Labs | ||
// | ||
// Licensed under the GNU General Public License, Version 3.0 (the "License"); | ||
// you may not use this file except in compliance with the License. | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
// Frabit - The next-generation database automatic operation platform | ||
// Copyright © 2022-2023 Blylei <[email protected]> | ||
// Copyright © 2022-2023 Frabit Labs | ||
// | ||
// Licensed under the GNU General Public License, Version 3.0 (the "License"); | ||
// you may not use this file except in compliance with the License. | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
// Frabit - The next-generation database automatic operation platform | ||
// Copyright © 2022-2023 Blylei <[email protected]> | ||
// Copyright © 2022-2023 Frabit Labs | ||
// | ||
// Licensed under the GNU General Public License, Version 3.0 (the "License"); | ||
// you may not use this file except in compliance with the License. | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
// Frabit - The next-generation database automatic operation platform | ||
// Copyright © 2022-2023 Blylei <[email protected]> | ||
// Copyright © 2022-2023 Frabit Labs | ||
// | ||
// Licensed under the GNU General Public License, Version 3.0 (the "License"); | ||
// you may not use this file except in compliance with the License. | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
// Frabit - The next-generation database automatic operation platform | ||
// Copyright © 2022-2023 Blylei <[email protected]> | ||
// Copyright © 2022-2023 Frabit Labs | ||
// | ||
// Licensed under the GNU General Public License, Version 3.0 (the "License"); | ||
// you may not use this file except in compliance with the License. | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
// Frabit - The next-generation database automatic operation platform | ||
// Copyright © 2022-2023 Blylei <[email protected]> | ||
// Copyright © 2022-2023 Frabit Labs | ||
// | ||
// Licensed under the GNU General Public License, Version 3.0 (the "License"); | ||
// you may not use this file except in compliance with the License. | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
// Frabit - The next-generation database automatic operation platform | ||
// Copyright © 2022-2023 Blylei <[email protected]> | ||
// Copyright © 2022-2023 Frabit Labs | ||
// | ||
// Licensed under the GNU General Public License, Version 3.0 (the "License"); | ||
// you may not use this file except in compliance with the License. | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
// Frabit - The next-generation database automatic operation platform | ||
// Copyright © 2022-2023 Blylei <[email protected]> | ||
// Copyright © 2022-2023 Frabit Labs | ||
// | ||
// Licensed under the GNU General Public License, Version 3.0 (the "License"); | ||
// you may not use this file except in compliance with the License. | ||
|
@@ -17,7 +17,7 @@ package deploy | |
|
||
import ( | ||
"fmt" | ||
"github.com/frabits/frabit/common/version" | ||
"github.com/frabits/frabit/pkg/common/version" | ||
"github.com/spf13/cobra" | ||
) | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
// Frabit - The next-generation database automatic operation platform | ||
// Copyright © 2022-2023 Blylei <[email protected]> | ||
// Copyright © 2022-2023 Frabit Labs | ||
// | ||
// Licensed under the GNU General Public License, Version 3.0 (the "License"); | ||
// you may not use this file except in compliance with the License. | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
// Frabit - The next-generation database automatic operation platform | ||
// Copyright © 2022-2023 Blylei <[email protected]> | ||
// Copyright © 2022-2023 Frabit Labs | ||
// | ||
// Licensed under the GNU General Public License, Version 3.0 (the "License"); | ||
// you may not use this file except in compliance with the License. | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
// Frabit - The next-generation database automatic operation platform | ||
// Copyright © 2022-2023 Blylei <[email protected]> | ||
// Copyright © 2022-2023 Frabit Labs | ||
// | ||
// Licensed under the GNU General Public License, Version 3.0 (the "License"); | ||
// you may not use this file except in compliance with the License. | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
// Frabit - The next-generation database automatic operation platform | ||
// Copyright © 2022-2023 Blylei <[email protected]> | ||
// Copyright © 2022-2023 Frabit Labs | ||
// | ||
// Licensed under the GNU General Public License, Version 3.0 (the "License"); | ||
// you may not use this file except in compliance with the License. | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
// Frabit - The next-generation database automatic operation platform | ||
// Copyright © 2022-2023 Blylei <[email protected]> | ||
// Copyright © 2022-2023 Frabit Labs | ||
// | ||
// Licensed under the GNU General Public License, Version 3.0 (the "License"); | ||
// you may not use this file except in compliance with the License. | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
// Frabit - The next-generation database automatic operation platform | ||
// Copyright © 2022-2023 Blylei <[email protected]> | ||
// Copyright © 2022-2023 Frabit Labs | ||
// | ||
// Licensed under the GNU General Public License, Version 3.0 (the "License"); | ||
// you may not use this file except in compliance with the License. | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
// Frabit - The next-generation database automatic operation platform | ||
// Copyright © 2022-2023 Blylei <[email protected]> | ||
// Copyright © 2022-2023 Frabit Labs | ||
// | ||
// Licensed under the GNU General Public License, Version 3.0 (the "License"); | ||
// you may not use this file except in compliance with the License. | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
// Frabit - The next-generation database automatic operation platform | ||
// Copyright © 2022-2023 Blylei <[email protected]> | ||
// Copyright © 2022-2023 Frabit Labs | ||
// | ||
// Licensed under the GNU General Public License, Version 3.0 (the "License"); | ||
// you may not use this file except in compliance with the License. | ||
|
@@ -22,16 +22,17 @@ import ( | |
"github.com/pkg/errors" | ||
"github.com/spf13/cobra" | ||
|
||
"github.com/frabits/frabit/admin/cmd/admin" | ||
"github.com/frabits/frabit/admin/cmd/auth" | ||
"github.com/frabits/frabit/admin/cmd/backup" | ||
"github.com/frabits/frabit/admin/cmd/deploy" | ||
"github.com/frabits/frabit/admin/cmd/plugin" | ||
"github.com/frabits/frabit/admin/cmd/restore" | ||
"github.com/frabits/frabit/admin/cmd/upgrade" | ||
"github.com/frabits/frabit/admin/cmd/version" | ||
"github.com/frabits/frabit/common/cmdutil" | ||
"github.com/frabits/frabit/common/config" | ||
"github.com/frabits/frabit/pkg/client" | ||
"github.com/frabits/frabit/pkg/common/cmdutil" | ||
"github.com/frabits/frabit/pkg/common/config" | ||
) | ||
|
||
type rootOpt struct { | ||
|
@@ -69,6 +70,7 @@ func init() { | |
rootCmd.AddCommand(restore.CmdRestore) | ||
rootCmd.AddCommand(deploy.CmdDeploy) | ||
rootCmd.AddCommand(upgrade.CmdUpgrade) | ||
rootCmd.AddCommand(admin.ResetAdminPassword) | ||
rootCmd.AddCommand(version.NewVersionCmd()) | ||
rootCmd.AddCommand(plugin.CmdPlugin) | ||
rootCmd.AddCommand(auth.CmdAuth) | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
// Frabit - The next-generation database automatic operation platform | ||
// Copyright © 2022-2023 Blylei <[email protected]> | ||
// Copyright © 2022-2023 Frabit Labs | ||
// | ||
// Licensed under the GNU General Public License, Version 3.0 (the "License"); | ||
// you may not use this file except in compliance with the License. | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
// Frabit - The next-generation database automatic operation platform | ||
// Copyright © 2022-2023 Blylei <[email protected]> | ||
// Copyright © 2022-2023 Frabit Labs | ||
// | ||
// Licensed under the GNU General Public License, Version 3.0 (the "License"); | ||
// you may not use this file except in compliance with the License. | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
// Frabit - The next-generation database automatic operation platform | ||
// Copyright © 2022-2023 Blylei <[email protected]> | ||
// Copyright © 2022-2023 Frabit Labs | ||
// | ||
// Licensed under the GNU General Public License, Version 3.0 (the "License"); | ||
// you may not use this file except in compliance with the License. | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
// Frabit - The next-generation database automatic operation platform | ||
// Copyright © 2022-2023 Blylei <[email protected]> | ||
// Copyright © 2022-2023 Frabit Labs | ||
// | ||
// Licensed under the GNU General Public License, Version 3.0 (the "License"); | ||
// you may not use this file except in compliance with the License. | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
// Frabit - The next-generation database automatic operation platform | ||
// Copyright © 2022-2023 Blylei <[email protected]> | ||
// Copyright © 2022-2023 Frabit Labs | ||
// | ||
// Licensed under the GNU General Public License, Version 3.0 (the "License"); | ||
// you may not use this file except in compliance with the License. | ||
|
@@ -16,7 +16,7 @@ | |
package upgrade | ||
|
||
import ( | ||
"github.com/frabits/frabit/common/cmdutil" | ||
"github.com/frabits/frabit/pkg/common/cmdutil" | ||
"github.com/spf13/cobra" | ||
) | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
// Frabit - The next-generation database automatic operation platform | ||
// Copyright © 2022-2023 Blylei <[email protected]> | ||
// Copyright © 2022-2023 Frabit Labs | ||
// | ||
// Licensed under the GNU General Public License, Version 3.0 (the "License"); | ||
// you may not use this file except in compliance with the License. | ||
|
@@ -17,9 +17,8 @@ package version | |
|
||
import ( | ||
"fmt" | ||
|
||
"github.com/frabits/frabit/common/cmdutil" | ||
"github.com/frabits/frabit/common/version" | ||
"github.com/frabits/frabit/pkg/common/cmdutil" | ||
"github.com/frabits/frabit/pkg/common/version" | ||
|
||
"github.com/spf13/cobra" | ||
) | ||
|
Oops, something went wrong.