16 lines
264 B
Python
16 lines
264 B
Python
#
|
|
# Copyright (C) 2016 FreeIPA Contributors see COPYING for license
|
|
#
|
|
|
|
from ..compat import CompatCommand, CompatMethod, CompatObject
|
|
|
|
Object = CompatObject
|
|
|
|
|
|
class Command(CompatCommand):
|
|
api_version = u'2.49'
|
|
|
|
|
|
class Method(Command, CompatMethod):
|
|
pass
|