mirror of
https://salsa.debian.org/freeipa-team/freeipa.git
synced 2024-12-26 00:41:25 -06:00
16 lines
276 B
Python
16 lines
276 B
Python
|
# Copyright (C) 2017 FreeIPA Contributors see COPYING for license
|
||
|
"""
|
||
|
Command Line Interface for IPA administration.
|
||
|
|
||
|
The CLI functionality is implemented in ipalib/cli.py
|
||
|
"""
|
||
|
from ipalib import api, cli
|
||
|
|
||
|
|
||
|
def main():
|
||
|
cli.run(api)
|
||
|
|
||
|
|
||
|
if __name__ == '__main__':
|
||
|
main()
|