Add support for managing forwarding rules

This commit is contained in:
Timotej Lazar 2023-05-29 12:24:21 +02:00
parent 52a5b7cd11
commit 765d4a3ce7
8 changed files with 169 additions and 4 deletions

View file

@ -50,6 +50,9 @@ def create_app(test_config=None):
from . import config
app.register_blueprint(config.blueprint)
from . import rules
app.register_blueprint(rules.blueprint)
from . import vpn
app.register_blueprint(vpn.blueprint)