10 lines
179 B
Django/Jinja
10 lines
179 B
Django/Jinja
from fastapi import FastAPI
|
|
|
|
app = FastAPI()
|
|
|
|
@app.get("/")
|
|
def root():
|
|
"""
|
|
This is an api that says, "Hello!"
|
|
"""
|
|
return {"response": "Hello ! {{ node_name }} !"} |