mirror of
https://github.com/fergalmoran/home-auto.git
synced 2026-02-17 21:24:01 +00:00
9 lines
138 B
Python
9 lines
138 B
Python
from flask import render_template
|
|
|
|
from . import camera
|
|
|
|
|
|
@camera.route('/')
|
|
def index():
|
|
return render_template('camera/index.html')
|