9 lines
186 B
Python
Executable File
9 lines
186 B
Python
Executable File
#!/usr/bin/env python3
|
|
|
|
# set server timezone in UTC before time module imported
|
|
__import__('os').environ['TZ'] = 'UTC'
|
|
import flectra
|
|
|
|
if __name__ == "__main__":
|
|
flectra.cli.main()
|