mirror of
https://github.com/ail-project/ail-framework.git
synced 2024-11-10 08:38:28 +00:00
23 lines
407 B
Python
23 lines
407 B
Python
|
#!/usr/bin/env python3
|
||
|
# -*-coding:UTF-8 -*
|
||
|
"""
|
||
|
AIL Init
|
||
|
============================
|
||
|
|
||
|
Init DB + Clear Stats
|
||
|
|
||
|
"""
|
||
|
|
||
|
import os
|
||
|
import sys
|
||
|
|
||
|
sys.path.append(os.environ['AIL_BIN'])
|
||
|
##################################
|
||
|
# Import Project packages
|
||
|
##################################
|
||
|
from lib import ail_queues
|
||
|
|
||
|
if __name__ == "__main__":
|
||
|
ail_queues.save_queue_digraph()
|
||
|
ail_queues.clear_modules_queues_stats()
|