@@ -3,6 +3,7 @@ package all
33import (
44 "github.com/UpCloudLtd/upcloud-cli/internal/commands"
55 "github.com/UpCloudLtd/upcloud-cli/internal/commands/account"
6+ "github.com/UpCloudLtd/upcloud-cli/internal/commands/database"
67 "github.com/UpCloudLtd/upcloud-cli/internal/commands/ipaddress"
78 "github.com/UpCloudLtd/upcloud-cli/internal/commands/network"
89 "github.com/UpCloudLtd/upcloud-cli/internal/commands/networkinterface"
@@ -66,7 +67,7 @@ func BuildCommands(rootCmd *cobra.Command, conf *config.Config) {
6667 commands .BuildCommand (storage .CreateBackupCommand (), backupCommand .Cobra (), conf )
6768 commands .BuildCommand (storage .RestoreBackupCommand (), backupCommand .Cobra (), conf )
6869
69- // // IP Addresses
70+ // IP Addresses
7071 ipAddressCommand := commands .BuildCommand (ipaddress .BaseIPAddressCommand (), rootCmd , conf )
7172 commands .BuildCommand (ipaddress .ListCommand (), ipAddressCommand .Cobra (), conf )
7273 commands .BuildCommand (ipaddress .ShowCommand (), ipAddressCommand .Cobra (), conf )
@@ -98,6 +99,10 @@ func BuildCommands(rootCmd *cobra.Command, conf *config.Config) {
9899 zoneCommand := commands .BuildCommand (zone .BaseZoneCommand (), rootCmd , conf )
99100 commands .BuildCommand (zone .ListCommand (), zoneCommand .Cobra (), conf )
100101
102+ // Databases
103+ databaseCommand := commands .BuildCommand (database .BaseDatabaseCommand (), rootCmd , conf )
104+ commands .BuildCommand (database .ListCommand (), databaseCommand .Cobra (), conf )
105+
101106 // Misc
102107 commands .BuildCommand (
103108 & root.CompletionCommand {
0 commit comments