mirror of https://github.com/Mai-with-u/MaiBot.git
add 🍓
parent
f09a65e510
commit
cefd8aa5b7
BIN
requirements.txt
BIN
requirements.txt
Binary file not shown.
|
|
@ -0,0 +1,22 @@
|
||||||
|
import strawberry
|
||||||
|
|
||||||
|
from fastapi import FastAPI
|
||||||
|
from strawberry.fastapi import GraphQLRouter
|
||||||
|
|
||||||
|
from src.common.server import global_server
|
||||||
|
|
||||||
|
|
||||||
|
@strawberry.type
|
||||||
|
class Query:
|
||||||
|
@strawberry.field
|
||||||
|
def hello(self) -> str:
|
||||||
|
return "Hello World"
|
||||||
|
|
||||||
|
|
||||||
|
schema = strawberry.Schema(Query)
|
||||||
|
|
||||||
|
graphql_app = GraphQLRouter(schema)
|
||||||
|
|
||||||
|
fast_api_app: FastAPI = global_server.get_app()
|
||||||
|
|
||||||
|
fast_api_app.include_router(graphql_app, prefix="/graphql")
|
||||||
|
|
@ -0,0 +1 @@
|
||||||
|
pass
|
||||||
Loading…
Reference in New Issue