mirror of
https://github.com/towalink/wgfrontend.git
synced 2026-01-12 20:46:18 +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()
|