
    M/e                     f    d Z ddlmZ ddlmZ ddlmZ ddlmZ d
deee      deeee	f      fd	Zy)z Certbot main public entry point.    )List)Optional)Union)mainNcli_argsreturnc                 ,    t        j                  |       S )zRun Certbot.

    :param cli_args: command line to Certbot, defaults to ``sys.argv[1:]``
    :type cli_args: `list` of `str`

    :returns: value for `sys.exit` about the exit status of Certbot
    :rtype: `str` or `int` or `None`

    )internal_mainr   )r   s    ./usr/lib/python3/dist-packages/certbot/main.pyr   r   	   s     h''    )N)
__doc__typingr   r   r   certbot._internalr   r
   strint r   r   <module>r      s=    &    3
(8DI& 
((5c?2K 
(r   