mirror of
https://github.com/fergalmoran/home-auto.git
synced 2026-02-19 14:14:26 +00:00
16 lines
333 B
Python
16 lines
333 B
Python
from flask import jsonify
|
|
from flask_restplus import Resource, reqparse
|
|
|
|
from phue import Bridge
|
|
import ast
|
|
import colorsys
|
|
|
|
from controllers.restplus import api
|
|
|
|
ns = api.namespace('camera', description='Operations related to Philips Hue lights')
|
|
|
|
|
|
class CameraController(Resource):
|
|
|
|
def get(self):
|
|
return 'Hello Sailor' |