Easy CA management
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 

20 lines
394 B

#!/usr/bin/env python3
# -*- coding: utf-8 -*-
from ca_shell import CAManagerShell
from ca_manager import CAManager, init_manager
from paths import *
if __name__ == '__main__':
init_manager([
MANAGER_PATH,
REQUESTS_PATH,
OUTPUT_PATH,
RESULTS_PATH,
])
with CAManager(MANAGER_PATH) as ca_manager:
CAManagerShell(ca_manager).cmdloop()