You've already forked haproxy-wi
mirror of
https://github.com/roxy-wi/roxy-wi.git
synced 2025-12-21 12:34:01 +08:00
8 lines
194 B
Python
8 lines
194 B
Python
import sys
|
|
import os
|
|
import bottle
|
|
sys.path.append(os.path.dirname(os.path.abspath(__file__)))
|
|
os.chdir(os.path.dirname(os.path.abspath(__file__)))
|
|
import api
|
|
|
|
application = bottle.default_app() |