1
0
mirror of https://github.com/samba-team/samba.git synced 2025-12-18 08:23:51 +03:00

python: move models out of the netcmd package

Signed-off-by: Rob van der Linde <rob@catalyst.net.nz>
Reviewed-by: Douglas Bagnall <douglas.bagnall@catalyst.net.nz>
Reviewed-by: Andrew Bartlett <abartlet@samba.org>
This commit is contained in:
Rob van der Linde
2024-03-12 16:47:58 +13:00
committed by Andrew Bartlett
parent 1f511acc13
commit f739ef813c
41 changed files with 38 additions and 40 deletions

View File

@@ -24,8 +24,8 @@ from samba.netcmd import (
SuperCommand,
Option,
)
from samba.netcmd.domain.models import Site, Subnet
from samba.netcmd.domain.models.exceptions import ModelError
from samba.domain.models import Site, Subnet
from samba.domain.models.exceptions import ModelError
class cmd_sites_list(Command):