|
6 | 6 |
|
7 | 7 | from .__version__ import VERSION |
8 | 8 | from ._exceptions import APIException |
9 | | -from .actions.client import ActionsClient |
10 | | -from .certificates.client import CertificatesClient |
11 | | -from .datacenters.client import DatacentersClient |
12 | | -from .firewalls.client import FirewallsClient |
13 | | -from .floating_ips.client import FloatingIPsClient |
14 | | -from .images.client import ImagesClient |
15 | | -from .isos.client import IsosClient |
16 | | -from .load_balancer_types.client import LoadBalancerTypesClient |
17 | | -from .load_balancers.client import LoadBalancersClient |
18 | | -from .locations.client import LocationsClient |
19 | | -from .networks.client import NetworksClient |
20 | | -from .placement_groups.client import PlacementGroupsClient |
21 | | -from .primary_ips.client import PrimaryIPsClient |
22 | | -from .server_types.client import ServerTypesClient |
23 | | -from .servers.client import ServersClient |
24 | | -from .ssh_keys.client import SSHKeysClient |
25 | | -from .volumes.client import VolumesClient |
| 9 | +from .actions import ActionsClient |
| 10 | +from .certificates import CertificatesClient |
| 11 | +from .datacenters import DatacentersClient |
| 12 | +from .firewalls import FirewallsClient |
| 13 | +from .floating_ips import FloatingIPsClient |
| 14 | +from .images import ImagesClient |
| 15 | +from .isos import IsosClient |
| 16 | +from .load_balancer_types import LoadBalancerTypesClient |
| 17 | +from .load_balancers import LoadBalancersClient |
| 18 | +from .locations import LocationsClient |
| 19 | +from .networks import NetworksClient |
| 20 | +from .placement_groups import PlacementGroupsClient |
| 21 | +from .primary_ips import PrimaryIPsClient |
| 22 | +from .server_types import ServerTypesClient |
| 23 | +from .servers import ServersClient |
| 24 | +from .ssh_keys import SSHKeysClient |
| 25 | +from .volumes import VolumesClient |
26 | 26 |
|
27 | 27 |
|
28 | 28 | class Client: |
|
0 commit comments