tebakaja's picture
change requirements
f804c96
raw
history blame
436 Bytes
from fastapi import FastAPI
from fastapi.middleware.cors import CORSMiddleware
from restful.routes import route
app = FastAPI(
title = "Cryptocurency Prediction Service",
version = "1.0"
)
# CORS Middleware
app.add_middleware(
CORSMiddleware,
allow_origins = ["*"],
allow_methods = ["*"],
allow_headers = ["*"],
allow_credentials = True,
)
app.include_router(
router = route,
prefix = '/crypto'
)