add ssl certificate and key file arguments to parser
Browse files- whisperlivekit/core.py +3 -0
whisperlivekit/core.py
CHANGED
|
@@ -130,6 +130,9 @@ def parse_args():
|
|
| 130 |
help="Set the log level",
|
| 131 |
default="DEBUG",
|
| 132 |
)
|
|
|
|
|
|
|
|
|
|
| 133 |
|
| 134 |
args = parser.parse_args()
|
| 135 |
|
|
|
|
| 130 |
help="Set the log level",
|
| 131 |
default="DEBUG",
|
| 132 |
)
|
| 133 |
+
parser.add_argument("--ssl-certfile", type=str, help="Path to the SSL certificate file.", default=None)
|
| 134 |
+
parser.add_argument("--ssl-keyfile", type=str, help="Path to the SSL private key file.", default=None)
|
| 135 |
+
|
| 136 |
|
| 137 |
args = parser.parse_args()
|
| 138 |
|