adding music print
This commit is contained in:
parent
a5e9e16b49
commit
5cab7f9740
@ -3,6 +3,7 @@ from google.cloud import firestore
|
|||||||
import os
|
import os
|
||||||
|
|
||||||
from .art import art_print
|
from .art import art_print
|
||||||
|
from .music import music_print
|
||||||
|
|
||||||
# Project ID is determined by the GCLOUD_PROJECT environment variable
|
# Project ID is determined by the GCLOUD_PROJECT environment variable
|
||||||
db = firestore.Client()
|
db = firestore.Client()
|
||||||
@ -10,6 +11,7 @@ db = firestore.Client()
|
|||||||
app = Flask(__name__, static_folder=os.path.join(os.path.dirname(__file__), '..', 'static'), template_folder = "templates")
|
app = Flask(__name__, static_folder=os.path.join(os.path.dirname(__file__), '..', 'static'), template_folder = "templates")
|
||||||
|
|
||||||
app.register_blueprint(art_print, url_prefix='/art')
|
app.register_blueprint(art_print, url_prefix='/art')
|
||||||
|
app.register_blueprint(music_print, url_prefix='/musictest')
|
||||||
|
|
||||||
staticbucketurl = 'https://storage.googleapis.com/sarsooxyzstatic/'
|
staticbucketurl = 'https://storage.googleapis.com/sarsooxyzstatic/'
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user