8 lines
143 B
Python
8 lines
143 B
Python
from fastapi import FastAPI
|
|
|
|
# TODO Add an integration for the contact information
|
|
app = FastAPI(
|
|
title="Javelina",
|
|
version="0.0.1",
|
|
)
|