feat: wigle config and status endpoints
This commit is contained in:
parent
eaf49841f0
commit
064378870b
2 changed files with 150 additions and 1 deletions
|
|
@ -3,7 +3,7 @@ import subprocess
|
|||
from flask import Flask, request, jsonify
|
||||
from . import config, db, forwarder
|
||||
from .auth import get_device_serial, get_api_token, require_auth
|
||||
from .routes import landmarks, gnss, status, frames
|
||||
from .routes import landmarks, gnss, status, frames, wigle
|
||||
|
||||
|
||||
def create_app():
|
||||
|
|
@ -19,6 +19,7 @@ def create_app():
|
|||
app.register_blueprint(gnss.bp)
|
||||
app.register_blueprint(status.bp)
|
||||
app.register_blueprint(frames.bp)
|
||||
app.register_blueprint(wigle.bp)
|
||||
|
||||
# ── PAIRING ENDPOINT ─────────────────────────────────────────────────────
|
||||
@app.route('/pair')
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue