Skip to content

Commit 57ab62c

Browse files
committed
fix(database): fix copy-paste mistake in databaseCommand name
1 parent aab128f commit 57ab62c

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

internal/commands/database/database.go

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,13 +4,13 @@ import (
44
"github.com/UpCloudLtd/upcloud-cli/internal/commands"
55
)
66

7-
// BaseZoneCommand creates the base "zone" command
7+
// BaseDatabaseCommand creates the base "zone" command
88
func BaseDatabaseCommand() commands.Command {
9-
return &zoneCommand{
9+
return &databaseCommand{
1010
commands.New("database", "Manage databases"),
1111
}
1212
}
1313

14-
type zoneCommand struct {
14+
type databaseCommand struct {
1515
*commands.BaseCommand
1616
}

0 commit comments

Comments
 (0)