blob: c17e26a61ac37487c4ee47429feb27c69116ff00 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
#
# Copyright (C) 2016 FreeIPA Contributors see COPYING for license
#
from ..compat import CompatCommand, CompatMethod, CompatObject
Object = CompatObject
class Command(CompatCommand):
api_version = u'2.164'
class Method(Command, CompatMethod):
pass
|