mirror of
https://github.com/fastapi/fastapi.git
synced 2026-03-06 16:06:49 -05:00
8 lines
267 B
Python
8 lines
267 B
Python
"""FastAPI framework, high performance, easy to learn, fast to code, ready for production"""
|
|
|
|
__version__ = "0.3.0"
|
|
|
|
from .applications import FastAPI
|
|
from .routing import APIRouter
|
|
from .params import Body, Path, Query, Header, Cookie, Form, File, Security, Depends
|