nftables-http-api/nftables-api.py

6 lines
124 B
Python
Raw Normal View History

from waitress import serve
from nftables_api.app import app
if __name__ == '__main__':
serve(app, host='*', port=9090)