blob: 4ef04a7721abec08f4d4fd25f3bb6b131a17d89b (
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.49'
class Method(Command, CompatMethod):
pass
|