7 lines
209 B
Python
7 lines
209 B
Python
#!/usr/bin/env python3
|
|
if __name__ == '__main__':
|
|
import sys
|
|
sys.path.insert(0, r'C:\Users\Nabeel\Nextcloud\Projects\firefly_reports')
|
|
from direct_create_backend import main
|
|
exit(main())
|