mirror of
https://github.com/towalink/wgfrontend.git
synced 2025-04-19 08:55:11 +00:00
16 lines
199 B
Python
16 lines
199 B
Python
|
#!/usr/bin/env python3
|
||
|
# -*- coding: utf-8 -*-
|
||
|
|
||
|
|
||
|
import setupenv
|
||
|
import webapp
|
||
|
|
||
|
|
||
|
def main():
|
||
|
cfg = setupenv.setup_environment()
|
||
|
webapp.run_webapp(cfg)
|
||
|
|
||
|
|
||
|
if __name__ == '__main__':
|
||
|
main()
|